当使用到 AtomicInteger 类时,我们需要特别注意它的边界问题。当它自增到 Integer.MAX_VALUE 时,就会变成
-Integer.MAX_VALUE 的并自减下去。如果此时没有注意对负数值的影响。那么将会发生难以察觉的bug。
private static AtomicInteger atomicInteger = new AtomicInteger(Integer.MAX_VALUE-2000);
private static IntUnaryOperator my1 = new IntUnaryOperatorImple();
public static void main(String[] args) {
for (int i = 0; i < 3000; i++) {
System.out.println(atomicInteger.getAndUpdate(my1));
}
}
//定义一个类实现这个接口
public static class IntUnaryOperatorImple implements IntUnaryOperator {
@Override
public int applyAsInt(int operand) {
if (operand >= Integer.MAX_VALUE)
return 1;
return operand + 1;
}
}
运用 jdk1.8 更新之后的方法 getAndUpdate() 去实现 。
IntUnaryOperator 接口:
java.util.concurrent.atomic.AtomicInteger#getAndUpdate 方法实现:
以原子更新的方式 获取一个值并做出处理并返回出来。
这样你就可以去处理边界问题了。