将 long 转换为 int 时避免截断错误
在 Java 中将 long 值转换为 int 时,确保转换是至关重要的不会导致信息丢失。实现此目的的一种方法是通过显式检查,如给定实现中所示:
<code class="java">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; }</code>
但是,自 Java 8 以来,引入了更惯用的解决方案:
数学.toIntExact()
此方法通过在发生溢出时抛出 ArithmeticException 来实现安全的 long 到 int 转换:
<code class="java">import java.lang.Math; ... long foo = 10L; int bar = Math.toIntExact(foo);</code>
Java 8 还包含类似的“精确”方法用于各种算术运算,确保准确性并避免意外的精度损失:
通过使用这些方法,开发人员可以自信地转换 long值转换为 int,而不存在因溢出而导致数据丢失或运行时异常的风险。
以上是如何在 Java 中安全地将 long 转换为 int:`toIntExact` 与显式检查?的详细内容。更多信息请关注PHP中文网其他相关文章!