阶段一 与服务器成功连接 实现代码 client.go package main import ( "fmt" "net" ) type Client struct { ServerIp string ServerPort int Name string conn net.Conn } func NewCli

- 阅读全文 -