Java内存模型FAQ(六)没有正确同步的含义是什么?

没有正确同步的代码对于不同的人来说可能会有不同的理解。在Java内存模型这个语义环境下,我们谈到“没有正确同步”,我们的意思是:

  1. 一个线程中有一个对变量的写操作,

  2. 另外一个线程对同一个变量有读操作,

  3. 而且写操作和读操作没有通过同步来保证顺序。

当这些规则被违反的时候,我们就说在这个变量上有一个“数据竞争”(data race)。一个有数据竞争的程序就是一个没有正确同步的程序。

《Java内存模型FAQ(一) 什么是内存模型》Java内存模型FAQ(六)没有正确同步的含义是什么?https://shimo.im/docs/3wGJrJGJgRppK8CT/

《Java内存模型FAQ(二) 其他语言,像C++,也有内存模型吗?》Java内存模型FAQ(六)没有正确同步的含义是什么?https://shimo.im/docs/6wwYdRjdT8YJcQtw/

《Java内存模型FAQ(三)JSR133是什么?》Java内存模型FAQ(六)没有正确同步的含义是什么?https://shimo.im/docs/Cpv88pvvJxPjwkcY/

《Java内存模型FAQ(四)重排序意味着什么?》Java内存模型FAQ(六)没有正确同步的含义是什么?https://shimo.im/docs/9q3tD9GJvJhCqqpj/

《Java内存模型FAQ(五)旧的内存模型有什么问题?》Java内存模型FAQ(六)没有正确同步的含义是什么?https://shimo.im/docs/kVCvTJ96pJTdqr6G/

原文

What do you mean by “incorrectly synchronized”?

Incorrectly synchronized code can mean different things to different people. When we talk about incorrectly synchronized code in the context of the Java Memory Model, we mean any code where

  1. there is a write of a variable by one thread,

  2. there is a read of the same variable by another thread and

  3. the write and read are not ordered by synchronization

When these rules are violated, we say we have a data race on that variable. A program with a data race is an incorrectly synchronized program.

上一篇:14.FastAPI常见应用配置


下一篇:Docker部署到Windows