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

2021/12/3 7:10:09

本文主要是介绍Java内存模型FAQ(六)没有正确同步的含义是什么?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

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

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

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

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

《Java内存模型FAQ(一) 什么是内存模型》icon-default.png?t=LA92https://shimo.im/docs/3wGJrJGJgRppK8CT/

《Java内存模型FAQ(二) 其他语言,像C++,也有内存模型吗?》icon-default.png?t=LA92https://shimo.im/docs/6wwYdRjdT8YJcQtw/

《Java内存模型FAQ(三)JSR133是什么?》icon-default.png?t=LA92https://shimo.im/docs/Cpv88pvvJxPjwkcY/

《Java内存模型FAQ(四)重排序意味着什么?》icon-default.png?t=LA92https://shimo.im/docs/9q3tD9GJvJhCqqpj/

《Java内存模型FAQ(五)旧的内存模型有什么问题?》icon-default.png?t=LA92https://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.



这篇关于Java内存模型FAQ(六)没有正确同步的含义是什么?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程