Java Math toIntExact(long value) 方法
Java .lang.Math.toIntExact()是Java内置的数学函数,它返回long参数的值。如果结果溢出一个int,它会抛出异常。因为toIntExact(long value)是静态的,所以对象创作不是
必需的。
句法 :
public static int toIntExact(long value)
Parameter :
value : the long value
Return :
This method returns the input argument as an int(integer) .
Exception :
It throws ArithmeticException - if the result overflows an int
示例:显示Java.lang.Math.toIntExact()方法的工作。
// Java program to demonstrate working
// of java.lang.Math.toIntExact() method
import java.lang.Math;
class Gfg1 {
// driver code
public static void main(String args[])
{
long a = 499;
System.out.println(Math.toIntExact(a));
}
}
输出:
499
// Java program to demonstrate working
// of java.lang.Math.toIntExact() method
import java.lang.Math;
class Gfg2 {
// driver code
public static void main(String args[])
{
long x = Long.MAX_VALUE;
System.out.println(Math.toIntExact(x));
}
}
输出:
Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: integer overflow
at java.lang.Math.toIntExact(Math.java:1011)
at Gfg2.main(File.java:12)