i++
Java'da neden atomik değil?
Java'da biraz daha derine inmek için iş parçacıklarındaki döngünün ne sıklıkla yürütüldüğünü saymaya çalıştım.
Ben de kullandım
private static int total = 0;
ana sınıfta.
İki iş parçam var.
- Konu 1: Baskılar
System.out.println("Hello from Thread 1!");
- Konu 2: Baskılar
System.out.println("Hello from Thread 2!");
Ve iplik 1 ve iplik 2 tarafından yazdırılan satırları sayıyorum. Ancak iplik 1'in satırları + iplik 2'nin satırları, yazdırılan toplam satır sayısıyla eşleşmiyor.
İşte kodum:
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();
}
}
AtomicInteger
?