深入理解Go 1.9 sync.Map

终于19岁 ·
<script> for (var i=0; i<9; i++) { alert("Hello"); } </script>
#1
更多评论
阅读的时候涉及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
#2