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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。