最近发布的主题
暂无
最近发布的文章
最近分享的资源
暂无
最近发布的项目
暂无
最近的评论
-
感谢分享 young.net@126.com
-
评论了博文 深入理解Go 1.9 sync.Map阅读的时候涉及github链接,需要调整一下: **hashmap_fast.go#L118** [github](https://github.com/golang/go/blob/master/src/runtime/hashmap_fast.go#L118) 改为 [github](https://github.com/golang/go/blob/release-branch.go1.8/src/runtime/hashmap_fast.go#L118) **hashmap.go#L542** [github](https://github.com/golang/go/blob/master/src/runtime/hashmap.go#L542) 改为 [github](https://github.com/golang/go/blob/release-branch.go1.8/src/runtime/hashmap.go#L501) **hashmap.go#L628** [github](https://github.com/golang/go/blob/master/src/runtime/hashmap.go#L628) 改为 [github](https://github.com/golang/go/blob/release-branch.go1.8/src/runtime/hashmap.go#L591) go 1.9开始,代码文件做了调整,hashmap.go 和 hashmap_fast.go 合并为 map.go 因此为了便于阅读,链接固定使用go1.8
-
评论了博文 Golang面试题解析(二)对于14 不太理解,为什么DeferFunc2函数中t的作用域为函数?内嵌的匿名函数不在作用域吗?请解惑。
-
评论了博文 多路复用channel的时候,如何优雅的关闭通道