中级会员
  • 第 1620 位会员
  • lerry
  • shillyxiao36@gmail.com
  • 2014-08-04 08:41:47
  • Offline
  • 0

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 评论了博文 Go1.81bug
    首先 00 开头是八进制的; func TestForMap(t *testing.T) { myMaps := map[int]string{ 001: "c++", 002:"java", 003:"golang", //009:"objective-c", //error } for k, v := range myMaps { t.Log(k, v) } myMaps[001] = "one" myMaps[002] = "two" myMaps[003] = "three" for i := 0; i < len(myMaps); i++ { t.Log(00i) } } 可以看到最后的输出并不是 i;而是如下的结果: baseController_test.go:60: 3 golang baseController_test.go:60: 1 c++ baseController_test.go:60: 2 java baseController_test.go:68: (0+0i) baseController_test.go:68: (0+0i) baseController_test.go:68: (0+0i)
  • 评论了博文 go的非侵入式接口
    这个也不能算是好处,特别是在阅读代码的时候,代码量大的时候,你可能根本不知道实现了那一接口
  • 编译linux版本就可以啊,CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.go