码迷,mamicode.com
首页 > 编程语言 > 详细

java.lang.Math.abs方法

时间:2020-05-17 22:01:30      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:abs   void   modifier   oat   函数   head   static   oid   mod   

java.lang.Math.abs方法

Modifier and Type 方法 描述
static double abs(double a) 返回值为 double绝对值。
static float abs(float a) 返回值为 float绝对值。
static int abs(int a) 返回一个 int绝对值。
static long abs(long a) 返回值为 long绝对值。

abs(double a)

public class TestAbs {
    public static void main(String[] args) {
        test();
    }
    //测试 abs(double a)方法
    public static void test(){
        double abs = Math.abs(1.23);
        System.out.println("双精度浮点数的绝对值:" + abs);
    }
}
双精度浮点数的绝对值:1.23

其他函数类似

java.lang.Math.abs方法

标签:abs   void   modifier   oat   函数   head   static   oid   mod   

原文地址:https://www.cnblogs.com/sweetorangezzz/p/12906967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!