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.nextUp()用法及代碼示例
- Java Math.nextAfter()用法及代碼示例
- Java Math.nextDown()用法及代碼示例
- Java Math.multiplyExact()用法及代碼示例
- Java Math.rint()用法及代碼示例
- Java Math.tan()用法及代碼示例
- Java Math.asin()用法及代碼示例
- Java Math.atan()用法及代碼示例
- Java Math.exp()用法及代碼示例
- Java Math.tanh()用法及代碼示例
- Java Math.toDegrees()用法及代碼示例
- Java Math.getExponent()用法及代碼示例
- Java Math.toIntExact()用法及代碼示例
- Java Math.IEEEremainder()用法及代碼示例
- Java Math.sqrt()用法及代碼示例
- Java Math.incrementExact()用法及代碼示例
- Java Math.min()用法及代碼示例
- Java Math.log()用法及代碼示例
- Java Math.log1p()用法及代碼示例
- Java Math.signum()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Math.negateExact() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。