Java.lang.Math.abs() 方法
描述
java.lang.Math.abs(int a) 返回一个 int 值的绝对值。 如果参数不是负数,则返回参数。 如果参数是否定的,则返回参数的否定。 请注意,如果参数等于 Integer.MIN_VALUE 的值,即最负的可表示 int 值,则结果是相同的值,即为负。
声明
以下是 java.lang.Math.abs() 方法的声明。
public static int abs(int a)
参数
a − 要确定其绝对值的参数
返回值
此方法返回参数的绝对值。
异常
NA
示例
下面的例子展示了 lang.Math.abs() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get some integers to find their absolute values int x = 175; int y = -184; // get and print their absolute values System.out.println("Math.abs(" + x + ")=" + Math.abs(x)); System.out.println("Math.abs(" + y + ")=" + Math.abs(y)); System.out.println("Math.abs(-0)=" + Math.abs(-0)); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
Math.abs(175)=175 Math.abs(-184)=184 Math.abs(-0)=0