Mengapa i++
tidak atom di Jawa?
Untuk lebih memahami Java, saya mencoba menghitung seberapa sering loop di thread dijalankan.
Jadi saya menggunakan file
private static int total = 0;
di kelas utama.
Saya memiliki dua utas.
- Thread 1: Cetakan
System.out.println("Hello from Thread 1!");
- Benang 2: Cetakan
System.out.println("Hello from Thread 2!");
Dan saya menghitung garis yang dicetak oleh utas 1 dan utas 2. Tetapi garis utas 1 + garis utas 2 tidak cocok dengan jumlah total garis yang dicetak.
Ini kode saya:
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Test {
private static int total = 0;
private static int countT1 = 0;
private static int countT2 = 0;
private boolean run = true;
public Test() {
ExecutorService newCachedThreadPool = Executors.newCachedThreadPool();
newCachedThreadPool.execute(t1);
newCachedThreadPool.execute(t2);
try {
Thread.sleep(1000);
}
catch (InterruptedException ex) {
Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);
}
run = false;
try {
Thread.sleep(1000);
}
catch (InterruptedException ex) {
Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println((countT1 + countT2 + " == " + total));
}
private Runnable t1 = new Runnable() {
@Override
public void run() {
while (run) {
total++;
countT1++;
System.out.println("Hello #" + countT1 + " from Thread 2! Total hello: " + total);
}
}
};
private Runnable t2 = new Runnable() {
@Override
public void run() {
while (run) {
total++;
countT2++;
System.out.println("Hello #" + countT2 + " from Thread 2! Total hello: " + total);
}
}
};
public static void main(String[] args) {
new Test();
}
}
iinc
operasi untuk menambah bilangan bulat, tetapi itu hanya berfungsi untuk variabel lokal, di mana konkurensi tidak menjadi perhatian. Untuk bidang, kompilator membuat perintah baca-ubah-tulis secara terpisah.
iinc
instruksi untuk bidang, memiliki instruksi tunggal tidak menjamin atomisitas, misalnya akses non- volatile
long
dan double
bidang tidak dijamin menjadi atom terlepas dari fakta bahwa itu dilakukan oleh instruksi bytecode tunggal.
AtomicInteger
?