初级会员
  • 第 48632 位会员
  • qysz
  • 2020-02-25 15:37:27
  • Offline
  • 25 69

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • [竞态监测器](https://blog.golang.org/race-detector) 中有这么一段话: > Because of its design, the race detector can detect race conditions only when they are actually triggered by running code, which means it's important to run race-enabled binaries under realistic workloads. 应该是说只有代码实际触发竞争条件才能检测到吧。
  • `break`跳出的是`select`,不是`for`循环;`select`会随机执行满足条件的语句,感觉`case resGt := <-ch2:`有概率一次都不执行,然后程序卡住。
  • 评论了主题 如何调用子类的方法
    可以试试这样 ``` func gg(cc c) { cc.f() } func main() { bb := b{a{}} //bb.g() gg(bb) } ```