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