What Cases Require Synchronized Method Access in Java?(Java中哪些情况需要同步方法访问?)
问题描述
在什么情况下需要同步对实例成员的访问?我知道对类的静态成员的访问总是需要同步 - 因为它们在类的所有对象实例之间共享.
In what cases is it necessary to synchronize access to instance members? I understand that access to static members of a class always needs to be synchronized- because they are shared across all object instances of the class.
我的问题是,如果我不同步实例成员,我什么时候会出错?
My question is when would I be incorrect if I do not synchronize instance members?
例如,如果我的班级是
public class MyClass {
private int instanceVar = 0;
public setInstanceVar()
{
instanceVar++;
}
public getInstanceVar()
{
return instanceVar;
}
}
在什么情况下(使用类MyClass
)我需要有方法:public synchronized setInstanceVar()
和公共同步 getInstanceVar()
?
in what cases (of usage of the class MyClass
) would I need to have methods:
public synchronized setInstanceVar()
and
public synchronized getInstanceVar()
?
提前感谢您的回答.
推荐答案
这取决于你是否希望你的类是线程安全的.大多数类不应该是线程安全的(为简单起见),在这种情况下您不需要同步.如果您需要它是线程安全的,您应该同步访问或使变量可变.(它避免了其他线程获取陈旧"数据.)
It depends on whether you want your class to be thread-safe. Most classes shouldn't be thread-safe (for simplicity) in which case you don't need synchronization. If you need it to be thread-safe, you should synchronize access or make the variable volatile. (It avoids other threads getting "stale" data.)
这篇关于Java中哪些情况需要同步方法访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java中哪些情况需要同步方法访问?
基础教程推荐
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01