Java绝对值abs()方法

Java abs()方法Java标准类库包括一个称为abs()的绝对值方法。 Math类将Java abs()方法重载以处理所有原始类型。 Java确定要调用哪个版本的abs()方法。这取决于参数的类型。
在Java中, 我们可以使用abs()方法找到绝对值。它属于java.lang.Math类。这是一种重载方法。它返回参数的绝对值。参数可以是任何类型, 例如int, float, double, long和short。该方法的签名是:

public static datatypeabs(datatype x)

其中x是要确定其绝对值的自变量。
要记住的要点
  • 如果参数为正, 则返回相同的参数。
  • 如果参数为负, 则返回不带负号的相同参数。
  • 如果参数为正零或负零, 则结果始终为正零。
  • 如果参数不是数字(NaN), 则结果为NaN。
  • 如果参数为无穷大, 则结果为无穷大。
  • 如果传递的参数是Integer.MIN_VALUE和Long.MIN_VALUE, 则结果是相同的值。

import java.lang.Math; class AbsoluteValueExample{public static void main(String args[]){int x=9; double y=-3.41; float z=-9.5f; System.out.println(Math.abs(x)); System.out.println(Math.abs(y)); System.out.println(Math.abs(z)); System.out.println(Math.abs("Min value of integer is: "+Math.abs(Integer.MIN_VALUE)); System.out.println(Math.abs("Min value of long is: "+Math.abs(Long.MIN_VALUE)); System.out.println(Math.abs(0.0/0.0)); //returns not a number(NaN)System.out.println(Math.abs(4.0/0)); //returns Infinity}}

【Java绝对值abs()方法】输出量
93.149.5Min value of integer is: -2147483648Min value of long is: -922337203685477808NaNInfinity

    推荐阅读