logo

Java Math.abs()-Methode

Der java.lang.Math.abs() Die Methode gibt den absoluten (positiven) Wert eines int-Werts zurück. Diese Methode gibt den absoluten Wert des Arguments an. Das Argument kann int, double, long und float sein.

Syntax:

 public static int abs(int i) public static double abs(double d) public static float abs(float f) public static long abs(long lng) 

Parameter:

 The argument whose absolute value is to be determined 

Zurückkehren:

 This method returns the absolute value of the argument 
  • Wenn wir einen positiven oder negativen Wert als Argument angeben, liefert diese Methode einen positiven Wert.
  • Wenn das Argument ist Unendlichkeit , wird diese Methode resultieren Positive Unendlichkeit .
  • Wenn das Argument ist NaN , diese Methode wird zurückgegeben NaN .
  • Wenn das Argument gleich dem Wert von Integer.MIN_VALUE oder Long.MIN_VALUE ist, dem negativsten darstellbaren int-Wert oder long-Wert, ist das Ergebnis derselbe Wert, der negativ ist.

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 78 48 -2147483648 

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 47.63 894.37 Infinity 

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 73.02 428.0 

Beispiel 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)); } } 
Testen Sie es jetzt

Ausgabe:

 78730343 4839233 -9223372036854775808