该方法给出参数的绝对值。参数可以是 int、float、long、double、short、byte。
用法
double abs(double d) float abs(float f) int abs(int i) long abs(long lng)
参数− 任何原始数据类型。
Return Value- 此方法返回参数的绝对值。
示例
以下是该方法的使用示例。
class Example {
static void main(String[] args) {
Integer a = -8;
double b = -100;
float c = -90;
System.out.println(Math.abs(a));
System.out.println(Math.abs(b));
System.out.println(Math.abs(c));
}
}
当我们运行上述程序时,我们将得到以下结果 -
8 100.0 90.0
相关用法
- Groovy after()用法及代码示例
- Groovy atan()用法及代码示例
- Groovy asin()用法及代码示例
- Groovy add()用法及代码示例
- Groovy acos()用法及代码示例
- Groovy matches()用法及代码示例
- Groovy padRight()用法及代码示例
- Groovy contains()用法及代码示例
- Groovy exp()用法及代码示例
- Groovy equals()用法及代码示例
- Groovy before()用法及代码示例
- Groovy pow()用法及代码示例
- Groovy sin()用法及代码示例
- Groovy concat()用法及代码示例
注:本文由纯净天空筛选整理自 Groovy - abs()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。