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