Java abs() 方法
描述:
該方法返回參數的絕對值。參數可以是 int, float, long, double, short, byte.
語法
此方法的所有變體在下麵給出:
double abs(double d) float abs(float f) int abs(int i) long abs(long lng)
參數
下麵是參數的詳細信息:
-
任何原始數據類型
返回值
-
這個方法返回參數的絕對值。
例子:
public class Test{ public static void main(String args[]){ Integer a = -8; double d = -100; float f = -90; System.out.println(Math.abs(a)); System.out.println(Math.abs(d)); System.out.println(Math.abs(f)); } }
這將產生以下結果:
8 100.0 90.0