私はスレッドに非常に慣れていません。私はコードを書き、出力が一貫して 20000 になることを期待していました。しかし、そうではありません。以下のコードを見つけてください。
class Runner4 implements Runnable {
static int count = 0;
public synchronized void increase() {
count++;
}
@Override
public void run() {
for (int i = 0; i < 10000; i++) {
increase();
}
}
}
public class threading4 {
public static void main(String[] args) {
Thread t1 = new Thread(new Runner4());
t1.start();
Thread t2 = new Thread(new Runner4());
t2.start();
try {
t1.join();
t2.join();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(Runner4.count);
}
}
説明はありますか?
ありがとう!!