最佳答案
因为 bool
本质上是原子,所以 atomic<bool>
不是多余的吗?我认为不可能有一个部分修改的 bool 值。什么时候我真的需要使用 atomic<bool>
而不是 bool
?