我知道诸如复合操作之类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