请看下面的程序
public class TestVolatile implements Runnable {
public static volatile int counter;
public static String lock = "lock";
public static void main(String[] args) {
Thread t1 = new Thread(new TestVolatile(),"Thread-1");
Thread t2 = new Thread(new TestVolatile(),"Thread-2");
t1.start();
t2.start();
}
public void run() {
synchronized(this) {
System.out.println(Thread.currentThread()+"-"+counter);
counter++;
}
}
}
如果我多次运行这个程序,我会得到 3 个不同的结果。
首先是
线程[Thread-1,5,main]-0
线程[Thread-2,5,main]-0
第二个是
线程[Thread-1,5,main]-0
线程[Thread-2,5,main]-1
第三是
线程[Thread-1,5,main]-1
线程[Thread-2,5,main]-0
但是如果将锁定对象从“this”更改为“lock”,我会得到 2 个不同的结果
首先是
线程[Thread-1,5,main]-0
线程[Thread-2,5,main]-1
第二个是
线程[Thread-1,5,main]-1
线程[Thread-2,5,main]-0
我在编写程序时的假设是,在任何一种情况下,“计数器”都不应该在两个语句中都为 0。
有人可以解释一下吗?