为什么Java不能告诉我什么时候不能使用整数?

前端之家收集整理的这篇文章主要介绍了为什么Java不能告诉我什么时候不能使用整数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于一个小项目(问题10项目欧拉),我试图总结低于二百万的所有素数.所以我用一个强力的方法,从0到2 000’000迭代,并检查数字是否是素数.如果我把它添加到总和中:
private int sum = 0;

private void calculate() {
   for (int i = 0; i < 2000000; i++) {
      if (i.isPrime()) {
         sum = sum + i;
      }
   }
   sysout(sum)
}

这个计算结果是1179908154,但这是不正确的.所以我改变了int到BigInteger,现在我得到正确的总和142913828922.显然int的范围被溢出.但是为什么Java不能告诉我呢? (例如,例外)

解决方法

因为可以想象,你可能希望它以传统的整数方式表现.例外是为绝对和不可改变的错误保留的.

ETA:从语言规范:

“The built-in integer operators do not
indicate overflow or underflow in any
way. The only numeric operators that
can throw an exception (§11) are the
integer divide operator / (§15.17.2)
and the integer remainder operator %
(§15.17.3),which throw an
ArithmeticException if the right-hand
operand is zero.”

(http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html)

原文链接:/java/124287.html

猜你在找的Java相关文章