| 作者: Witton Bell
| 932 字
| 2 分钟
在Windows中,如果想使用Linux下的一些命令或者开发工具,可以安装Cygwin或者MinGW,MinGW相比Cy ……
阅读全文
| 作者: Witton Bell
| 1850 字
| 4 分钟
Go的标准库中Windows下的网络是使用了IOCP的,参见go源码go/src/runtime/netpoll_win ……
阅读全文
| 作者: Witton Bell
| 561 字
| 2 分钟
在使用Protobuf通信或者存储过程中,可能会有这样一个需求,根据PB的message名字来构建一个PB结构的实例,然 ……
阅读全文
| 作者: Witton Bell
| 1374 字
| 3 分钟
我们在看Go语言的源码时,经常会看到一些特别的注释,比如: 1//go:build 2//go:linkname 3//go:nosplit 4//go:noescape 5//go:uintptrescapes 6//go:noinline 7//go:nowritebarrierrec 等等,这些特别的注释其实是Go编译器的指示指令。 ……
阅读全文