Golang快速入门 | 第六天 | 即时通讯系统客服端
阶段一 与服务器成功连接 实现代码 client.go package main import ( "fmt" "net" ) type Client struct { ServerIp string ServerPort int Name string conn net.Conn } func NewCli
阶段一 与服务器成功连接 实现代码 client.go package main import ( "fmt" "net" ) type Client struct { ServerIp string ServerPort int Name string conn net.Conn } func NewCli