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


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


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

用法

public static int negateExact (int a) 
public static long negateExact (long a)

參數

a = the value to negate

返回

It returns the negation of the argument.
  • 如果參數是 Integer.MIN_VALUE 或 Long.MIN_VALUE,它將拋出一個 ArithmeticException。

例子1

public class NegateExactExample1
{
    public static void main(String[] args) 
    {
        int a = 379;
        // Input a, Output -a
        System.out.println(Math.negateExact(a));
    }
}

輸出:

-379

例子2

public class NegateExactExample2
{
    public static void main(String[] args) 
    {
        long a = -830;
        // Input -a, Output a
        System.out.println(Math.negateExact(a));
    }
}

輸出:

830

例子3

public class NegateExactExample3
{
    public static void main(String[] args) 
    {
        int a = Integer.MIN_VALUE;
        // Input int overflow, Output ArithmeticException
        System.out.println(Math.negateExact(a));
    }
}

輸出:

Exception in thread "main" java.lang.ArithmeticException:integer overflow
	at java.lang.Math.negateExact(Math.java:977)
	at negateExactExample3.main(negateExactExample3.java:7)

示例 4

public class NegateExactExample4
{
    public static void main(String[] args) 
    {
        long a = Long.MIN_VALUE;
        // Input long overflow, Output ArithmeticException
        System.out.println(Math.negateExact(a));
    }
}

輸出:

Exception in thread "main" java.lang.ArithmeticException:long overflow
	at java.lang.Math.negateExact(Math.java:994)
	at negateExactExample4.main(negateExactExample4.java:7)






相關用法


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