Java Math incrementExact() 将指定数字加 1 并返回。
用法:
Math.incrementExact(num)
在这里,incrementExact()
是一个静态方法。因此,我们使用类名 Math
访问该方法。
参数:
incrementExact()
方法采用单个参数。
- num- 参数1被添加
注意:参数的数据类型应该是int
或者long
.
返回:
- 返回参数加 1 后的值
示例 1:Java 数学。incrementExact()
class Main {
public static void main(String[] args) {
// create a int variable
int a = 65;
// incrementExact() with the int argument
System.out.println(Math.incrementExact(a)); // 66
// create a long variable
long b = 52336L;
// incrementExact() with the long argument
System.out.println(Math.incrementExact(b)); // 52337
}
}
在上面的例子中,我们使用了Math.incrementExact()
方法与int
和long
要添加的变量1到各自的变量。
示例 2:Math.incrementExact() 引发异常
如果加法的结果溢出数据类型,incrementExact()
方法将引发异常。即结果应在指定变量的数据类型范围内。
class Main {
public static void main(String[] args) {
// create a int variable
// maximum int value
int a = 2147483647;
// incrementExact() with the int argument
// throws exception
System.out.println(Math.incrementExact(a));
}
}
在上面的例子中,值a
是最大值int
价值。在这里,incrementExact()
方法添加1到a
.
a + 1
=> 2147483647 + 1
=> 2147483648 // out of range of int type
因此,incrementExact()
方法会引发 integer overflow
异常。
相关用法
- Java Math incrementExact()用法及代码示例
- Java Math incrementExact(int x)用法及代码示例
- Java Math sqrt()用法及代码示例
- Java Math addExact(long x, long y)用法及代码示例
- Java Math sinh()用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Math cos()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextUp()用法及代码示例
- Java Math addExact()用法及代码示例
- Java Math atan2()用法及代码示例
- Java Math max()用法及代码示例
- Java Math floorMod()用法及代码示例
- Java Math acos()用法及代码示例
- Java Math exp()用法及代码示例
- Java Math hypot()用法及代码示例
- Java Math copySign()用法及代码示例
- Java Math fma()用法及代码示例
- Java Math sin()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math incrementExact()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。