Java Math toIntExact(long value)方法
java.lang.Math.toIntExact()是java中一个内置的数学函数,它返回长参数的值。如果结果超过int,它会抛出一个异常。由于toIntExact(long value)是静态的,所以不需要创建对象 。
语法:
public static int toIntExact(long value)
参数:
value :长值
返回 :
该方法将输入的参数作为一个int(整数)返回。
异常:
它抛出ArithmeticException – 如果结果溢出一个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)