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


Java Math.toIntExact()用法及代碼示例


java.lang.Math.toIntExact() 返回 long 參數的值。如果結果溢出 int 或 long,它將拋出異常。

用法

public static int toIntExact (long a)

參數

a = the long value

返回

It returns the input argument as an int(integer) .
  • 如果參數是 Long.MAX_VALUE 或 Long.MIN_VALUE,則會拋出 ArithmeticException。

例子1

public class ToIntExactExample1
{
    public static void main(String[] args) 
    {
       long a = 230;
        System.out.println(Math.toIntExact(a));
    }
}

輸出:

230

例子2

public class ToIntExactExample2
{
    public static void main(String[] args) 
    {
        long a = -829;
        System.out.println(Math.toIntExact(a));
    }
}

輸出:

-829

例子3

public class ToIntExactExample3
{
    public static void main(String[] args) 
    {
        long a = Long.MAX_VALUE;
        System.out.println(Math.toIntExact(a));
    }
}

輸出:

Exception in thread "main" java.lang.ArithmeticException:integer overflow
	at java.lang.Math.toIntExact(Math.java:1011)
	at toIntExactExample3.main(toIntExactExample3.java:6)

示例 4

public class ToIntExactExample4
{
    public static void main(String[] args) 
    {
        long a = Long.MIN_VALUE;
        System.out.println(Math.toIntExact(a));
    }
}

輸出:

Exception in thread "main" java.lang.ArithmeticException:integer overflow
	at java.lang.Math.toIntExact(Math.java:1011)
	at toIntExactExample4.main(toIntExactExample4.java:6)






相關用法


注:本文由純淨天空篩選整理自 Java Math.toIntExact() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。