Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
两个线程在没有任何锁或同步的情况下将相同的值写入相同的全局内存变量是否安全?
结果总是确定的和正确的吗?
共享内存变量和寄存器变量怎么样?
你可以在这里找到一个类似的问题(有答案): Concurrent writes in the same global memory location
通常,并行编程模型不保证多个线程之间的执行顺序。因此,您将在每个程序执行中具有不同的行为。