当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.abs()用法及代码示例


java.lang.Math.abs() 方法返回一个 int 值的绝对(正)值。此方法给出参数的绝对值。参数可以是 int、double、long 和 float。

用法:

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

参数:

The argument whose absolute value is to be determined

返回:

This method returns the absolute value of the argument
  • 如果我们提供正值或负值作为参数,此方法将产生正值。
  • 如果参数为 Infinity,则此方法将导致正无穷大。
  • 如果参数为 NaN,则此方法将返回 NaN。
  • 如果参数等于 Integer.MIN_VALUE 或 Long.MIN_VALUE 的值,即最负可表示的 int 值或 long 值,则结果是相同的值,即负值。

范例1:

public class AbsExample1
{
    public static void main(String args[])
    {
        int x = 78;
        int y = -48;
        //print the absolute value of int type
        System.out.println(Math.abs(x));
        System.out.println(Math.abs(y));
        System.out.println(Math.abs(Integer.MIN_VALUE));
    }
}

输出:

78
48
-2147483648

范例2:

public class AbsExample2 
{ 
    public static void main(String args[])
    {
        double x = -47.63;
        double y = -894.37;
        //print the absolute value of double type
        System.out.println(Math.abs(x));
        System.out.println(Math.abs(y));
        System.out.println(Math.abs(7.0 / 0));   
    }
}

输出:

47.63
894.37
Infinity

范例3:

public class AbsExample3
{
	public static void main(String args[])
    {
		float x = -73.02f;
		float y = -428.0f;	
		//print the absolute value of float type
		System.out.println(Math.abs(x));
		System.out.println(Math.abs(y));
    }
}

输出:

73.02
428.0

范例4:

public class AbsExample4 
{
	public static void main(String args[])
    {
		long x = 78730343;
		long y = -4839233;
		//print the absolute value of long type
		System.out.println(Math.abs(x));
		System.out.println(Math.abs(y));
		System.out.println(Math.abs(Long.MIN_VALUE));
    }
}

输出:

78730343
4839233
-9223372036854775808






相关用法


注:本文由纯净天空筛选整理自 Java Math.abs() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。