當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。