両方のスレッドで変数を共有したいのですが、実行時に 1 と 2 ではなく 2 が 2 回出力されることがあります。
public class man implements Runnable{
int value = 0;
public static void main(String[] args){
Runnable job = new man();
Thread work1 = new Thread(job);
work1.setName("Thread1");
Thread work2 = new Thread(job);
work2.setName("Thread2");
work1.start();
work2.start();
}
public void run(){
synchronized(this){
value = value + 1;
}
System.out.println("VALUE = " + value +", Running " + Thread.currentThread().getName());
}
}
出力は時々次のとおりです。
VALUE = 2, Running Thread2
VALUE = 2, Running Thread1
その他の時間は次のとおりです。
VALUE = 1, Running Thread2
VALUE = 2, Running Thread1
なぜこうなった?私は HeadFirst の本で Java を学んでいますが、この質問が出てきました。