java.lang.StrictMath.abs(int a)方法實例
java.lang.StrictMath.abs(int a) 方法返回一個int值的絕對值。如果參數不是負數,則返回該參數。如果參數為負數,則返回該參數的負數(負負得為正)。
聲明
以下是java.lang.StrictMath.abs()方法的聲明
public static int abs(int a)
參數
-
a -- 這是要來確定其絕對值的參數。
返回值
此方法返回一個int值的絕對值。
異常
-
NA
例子
下麵的例子顯示java.lang.StrictMath.abs()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { int i1 = 54 , i2 = -35; // returns the absolute value of positive int value int iAbsValue = StrictMath.abs(i1); System.out.println("absolute value of " + i1 + " = " + iAbsValue); // returns the absolute value of negative int value iAbsValue = StrictMath.abs(i2); System.out.println("absolute value of " + i2 + " = " + iAbsValue); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
absolute value of 54 = 54 absolute value of -35 = 35