当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math toIntExact(long value)用法及代码示例


java.lang.Math.toIntExact()是java中的内置数学函数,该函数返回long参数的值。如果结果溢出int则抛出异常。由于toIntExact(long value)是静态的,因此不需要创建对象。

用法:

public static int toIntExact(long value)
参数:
value: the long value
返回:
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)


相关用法


注:本文由纯净天空筛选整理自Niraj_Pandey大神的英文原创作品 Java Math toIntExact(long value) Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。