弹出一个简单的提示窗口怎么实现
只需要弹出一个窗口,提示一句信息,然后点确定就关闭。 看了"github.com/jthmath/winapi"和github.com/lxn/walk,感觉特别复杂,不知道有没有简单的方法。阅读全文
只需要弹出一个窗口,提示一句信息,然后点确定就关闭。 看了"github.com/jthmath/winapi"和github.com/lxn/walk,感觉特别复杂,不知道有没有简单的方法。阅读全文
初学golang,从网上修改了一个聊天室的代码,并发时遇到了一些问题。 ##服务端源码 ``` package main import ( "fmt" "net" "os" "sync" ) var ( readySendCount int sendCount int reciveCount int chanreadySendCount int chansendCount int ...阅读全文