英文:
concurrent access to a uint64 in golang
问题
如果多个goroutine访问一个uint64变量,读取操作将永远不会得到除写入到该uint64变量的值之外的其他值。这个说法正确吗?
英文:
If multiple goroutines access one uint64, the read will never get some other value than the ones that are written to that uint64.
Is this correct?
答案1
得分: 2
这是正确的吗?
不,这在任何情况下都是错误的。
你绝对不能编写带有数据竞争的代码。这个"绝对不能"是不可商议的。
英文:
> Is this correct?
No, this is plain and totally wrong in each and every case.
You must not write code with data races. This "must not" is not negotiable.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论