の 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
- 引数として正または負の値を指定すると、このメソッドの結果は正の値になります。
- 引数が次の場合 無限大 、このメソッドの結果は 正の無限大 。
- 引数が次の場合 NaN 、このメソッドは戻ります NaN 。
- 引数が、表現可能な最も負の int 値または Long 値である Integer.MIN_VALUE または Long.MIN_VALUE の値と等しい場合、結果は同じ値であり、負になります。
例 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)); } }今すぐテストしてください
出力:
配列のソートJava
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