dreamy1992 2018-10-08 22:25
浏览 353
已采纳

len()线程在golang中安全吗?

I'm logging every second the length of a map; I don't care if I have the "exact" value / race conditions (off by one is ok). I'm interested to know if this could cause a panic and if I have to enclose len() with some .RLock()/Unlock() or not.

I'm asking because concurrent reads/writes in a map will cause a panic (Go detects that) but I don't know if reading the length counts as a "read". I have tried with a test program but cannot produce a crash but I'd rather have an exact answer, at least for the sake of it.

If it matters I'm interested in both len for arrays and for maps. Thanks!

  • 写回答

1条回答 默认 最新

  • 普通网友 2018-10-08 22:44
    关注

    It is a race condition. The results are undefined. For example,

    racer.go:

    package main
    
    func main() {
        m := make(map[int]int)
        l := 0
        go func() {
            for {
                l = len(m)
            }
        }()
        for i := 0; i < 10000; i++ {
            m[i] = i
        }
    }
    

    Output:

    $ go run -race racer.go
    ==================
    WARNING: DATA RACE
    Read at 0x00c00008e000 by goroutine 5:
      main.main.func1()
          /home/peter/gopath/src/racer.go:8 +0x5f
    
    Previous write at 0x00c00008e000 by main goroutine:
      runtime.mapassign_fast64()
          /home/peter/go/src/runtime/map_fast64.go:92 +0x0
      main.main()
          /home/peter/gopath/src/racer.go:12 +0xba
    
    Goroutine 5 (running) created at:
      main.main()
          /home/peter/gopath/src/racer.go:6 +0x92
    ==================
    Found 1 data race(s)
    exit status 66
    $
    

    References:

    Wikipedia: Race condition

    The Go Blog: Introducing the Go Race Detector

    Go: Data Race Detector

    Benign Data Races: What Could Possibly Go Wrong?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥200 csgo2的viewmatrix值是否还有别的获取方式
  • ¥15 Stable Diffusion,用Ebsynth utility在视频选帧图重绘,第一步报错,蒙版和帧图没法生成,怎么处理啊
  • ¥15 请把下列每一行代码完整地读懂并注释出来
  • ¥15 pycharm运行main文件,显示没有conda环境
  • ¥15 寻找公式识别开发,自动识别整页文档、图像公式的软件
  • ¥15 为什么eclipse不能再下载了?
  • ¥15 编辑cmake lists 明明写了project项目名,但是还是报错怎么回事
  • ¥15 关于#计算机视觉#的问题:求一份高质量桥梁多病害数据集
  • ¥15 特定网页无法访问,已排除网页问题
  • ¥50 如何将脑的图像投影到颅骨上