Groovy abs()方法

2018-12-29 16:18 更新

该方法给出了参数的绝对值。参数可以是int,float,long,double,short,byte。

句法

double abs(double d) 
float abs(float f) 
int abs(int i) 
long abs(long lng)

参数 - 任何基本数据类型。

返回值 - 此方法返回参数的绝对值。

例子

以下是此方法的使用示例。

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
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号