java.lang.Math.abs方法
Posted 酸酸甜甜萌橘子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.Math.abs方法相关的知识,希望对你有一定的参考价值。
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方法的主要内容,如果未能解决你的问题,请参考以下文章