2015-04-20 15:36:01 -07:00
|
|
|
//: concurrency/AtomicIntegerTest.java
|
|
|
|
import java.util.concurrent.*;
|
|
|
|
import java.util.concurrent.atomic.*;
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
public class AtomicIntegerTest implements Runnable {
|
|
|
|
private AtomicInteger i = new AtomicInteger(0);
|
|
|
|
public int getValue() { return i.get(); }
|
|
|
|
private void evenIncrement() { i.addAndGet(2); }
|
2015-05-05 11:20:13 -07:00
|
|
|
@Override
|
2015-04-20 15:36:01 -07:00
|
|
|
public void run() {
|
|
|
|
while(true)
|
|
|
|
evenIncrement();
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
|
|
new Timer().schedule(new TimerTask() {
|
2015-05-05 11:20:13 -07:00
|
|
|
@Override
|
2015-04-20 15:36:01 -07:00
|
|
|
public void run() {
|
|
|
|
System.err.println("Aborting");
|
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
}, 5000); // Terminate after 5 seconds
|
|
|
|
ExecutorService exec = Executors.newCachedThreadPool();
|
|
|
|
AtomicIntegerTest ait = new AtomicIntegerTest();
|
|
|
|
exec.execute(ait);
|
|
|
|
while(true) {
|
|
|
|
int val = ait.getValue();
|
|
|
|
if(val % 2 != 0) {
|
|
|
|
System.out.println(val);
|
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} ///:~
|