static int incAtomicInt(AtomicInteger i) { ret i.incrementAndGet(); } static int incAtomicInt(AtomicInteger i, int delta) { ret i.addAndGet(delta); }