Ejemplo n.º 1
0
 public AtomicPositiveInteger()
 {
     i = new AtomicInteger();
 }
Ejemplo n.º 2
0
 public PositiveAtomicCounter()
 {
     atom = new AtomicInteger(0);
 }
Ejemplo n.º 3
0
 public AtomicPositiveInteger(int initialValue)
 {
     i = new AtomicInteger(initialValue);
 }