Dlaczego i++
atomic nie jest w Javie?
Aby zagłębić się w Javę, spróbowałem policzyć, jak często wykonywane są pętle w wątkach.
Więc użyłem
private static int total = 0;
w klasie głównej.
Mam dwa wątki.
- Wątek 1: Wydruki
System.out.println("Hello from Thread 1!");
- Wątek 2: Wydruki
System.out.println("Hello from Thread 2!");
Liczę wiersze wydrukowane przez wątek 1 i wątek 2. Ale wiersze wątku 1 + wiersze wątku 2 nie pasują do całkowitej liczby wydrukowanych wierszy.
Oto mój kod:
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
?