2017-01-13 14:28:08 -08:00
|
|
|
// concurrent/GuardedIDField.java
|
|
|
|
// (c)2017 MindView LLC: see Copyright.txt
|
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
import java.util.concurrent.atomic.*;
|
|
|
|
|
|
|
|
public class GuardedIDField implements HasID {
|
|
|
|
private static AtomicInteger counter =
|
|
|
|
new AtomicInteger();
|
2017-01-22 16:48:11 -08:00
|
|
|
private int id = counter.getAndIncrement();
|
2017-01-13 14:28:08 -08:00
|
|
|
public int getID() { return id; }
|
|
|
|
public static void main(String[] args) {
|
|
|
|
IDChecker.test(GuardedIDField::new);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Output:
|
|
|
|
0
|
|
|
|
*/
|