常に「3」が出力されるためです。同期は不要ですか?実際のマルチスレッドの問題で問題が発生しているため、この単純なことをテストしています。これは、問題が大きいため、問題を説明するのに適していません。これは、状況を示すための簡略化されたバージョンです。
class Test {
public static int count = 0;
class CountThread extends Thread {
public void run()
{
count++;
}
}
public void add(){
CountThread a = new CountThread();
CountThread b = new CountThread();
CountThread c = new CountThread();
a.start();
b.start();
c.start();
try {
a.join();
b.join();
c.join();
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
public static void main(String[] args) {
Test test = new Test();
System.out.println("START = " + Test.count);
test.add();
System.out.println("END: Account balance = " + Test.count);
}