!= 检查线程安全吗?
我知道诸如之类的复合操作不是线程安全的,因为它们涉及多个操作。i++
但是,检查引用本身是否是线程安全操作?
a != a //is this thread-safe
我试图对此进行编程并使用多个线程,但它没有失败。我想我无法在我的机器上模拟比赛。
编辑:
public class TestThreadSafety {
private Object a = new Object();
public static void main(String[] args) {
final TestThreadSafety instance = new TestThreadSafety();
Thread testingReferenceThread = new Thread(new Runnable() {
@Override
public void run() {
long countOfIterations = 0L;
while(true){
boolean flag = instance.a != instance.a;
if(flag)
System.out.println(countOfIterations + ":" + flag);
countOfIterations++;
}
}
});
Thread updatingReferenceThread = new Thread(new Runnable() {
@Override
public void run() {
while(true){
instance.a = new Object();
}
}
});
testingReferenceThread.start();
updatingReferenceThread.start();
}
}
这是我用来测试线程安全性的程序。
奇怪的行为
当我的程序在某些迭代之间启动时,我得到输出标志值,这意味着对同一引用的引用检查失败。但是经过一些迭代后,输出变为常量值,然后长时间执行程序不会生成单个输出。!=
false
true
正如输出所建议的那样,经过一些n次(非固定)迭代后,输出似乎是常量值并且不会改变。
输出:
对于某些迭代:
1494:true
1495:true
1496:true
19970:true
19972:true
19974:true
//after this there is not a single instance when the condition becomes true