當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。