2022-10-11 |

Java abs() 方法


abs() 返回参数的绝对值。参数可以是 int, float, long, double, short, byte类型。

语法

各个类型的方法格式类似如下:

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

参数

  • 任何原生数据类型。

返回值

返回参数的绝对值。

实例

实例

public class Test{ 
    public static void main(String args[]){
        Integer a = -8;
        double d = -100;
        float f = -90f;    
                                                
        System.out.println(Math.abs(a));
        System.out.println(Math.abs(d));     
        System.out.println(Math.abs(f));    
    }
}
练习一下

编译以上程序,输出结果为:

8
100.0
90.0

0

python
c#
php
C++
c语言
java

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论