我在下面有这段代码:
public class Test1 {
private static long value = 0;
public static void main(String[] args) {
Thread1 k = new Thread1();
Thread1 t = new Thread1();
k.start();
t.start();
while (k.isAlive() & t.isAlive());
System.out.println(value);
}
public static void addOne() {
long temp = value;
temp = temp + 1;
value = temp;
}
}
class Thread1 extends Thread {
public void run() {
for (int i=0; i<100; i++)
Test1.addOne();
}
}
通常当我运行它时,我会得到 200 的输出,但很少会得到像 100 和 151 这样的输出。这是什么原因造成的?