Java中最惯用的方法是验证从转换long为int不会丢失任何信息?
这是我当前的实现:
public static int safeLongToInt(long l) { int i = (int)l; if ((long)i != l) { throw new IllegalArgumentException(l + " cannot be cast to int without changing its value."); } return i; }
Java 8已添加了一个新方法来完成此任务。
import static java.lang.Math.toIntExact; long foo = 10L; int bar = toIntExact(foo);
会抛出一个ArithmeticException溢出的情况。
ArithmeticException
看到: Math.toIntExact(long)
Math.toIntExact(long)
Java 8中已添加了其他几种溢出安全方法,它们的结尾是精确。
例子: