/** floatValue returns current value. */ public void testFloatValue() { AtomicInteger ai = new AtomicInteger(); assertEquals(0.0f, ai.floatValue()); for (int x : VALUES) { ai.set(x); assertEquals((float) x, ai.floatValue()); } }
/** 1. 从Number中继承过来的几个方法, 并实现了它。 */ public void testValue() { AtomicInteger ai = new AtomicInteger(22); System.out.println(ai.byteValue()); System.out.println(ai.shortValue()); System.out.println(ai.intValue()); System.out.println(ai.longValue()); System.out.println(ai.floatValue()); System.out.println(ai.doubleValue()); }