java.lang.Math.negateExact() 方法返回参数的负值。如果结果溢出 int,它将引发异常。
语法
public static int negateExact(int x)
参数
x | 指定值。 |
返回值
返回参数的否定。
异常
如果结果溢出 int,则抛出 ArithmeticException。
示例:
在下面的示例中,negateExact() 方法用于否定参数。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
int i = 5;
int j = -2;
System.out.println(Math.negateExact(i));
System.out.println(Math.negateExact(j));
}
}
上述代码的输出将是:
-5
2