logo

Java Math.abs() metod

De java.lang.Math.abs() metod returnerar det absoluta (positiva) värdet av ett int-värde. Denna metod ger det absoluta värdet av argumentet. Argumentet kan vara int, double, long och float.

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) 

Parametrar:

 The argument whose absolute value is to be determined 

Lämna tillbaka:

 This method returns the absolute value of the argument 
  • Om vi ​​tillhandahåller positivt eller negativt värde som argument kommer denna metod att resultera i positivt värde.
  • Om argumentet är Oändlighet , kommer denna metod att resultera Positiv oändlighet .
  • Om argumentet är NaN , kommer den här metoden tillbaka NaN .
  • Om argumentet är lika med värdet på Integer.MIN_VALUE eller Long.MIN_VALUE, det mest negativa representerbara int-värdet eller long-värdet, blir resultatet samma värde, vilket är negativt.

Exempel 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)); } } 
Testa det nu

Produktion:

 78 48 -2147483648 

Exempel 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)); } } 
Testa det nu

Produktion:

 47.63 894.37 Infinity 

Exempel 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)); } } 
Testa det nu

Produktion:

 73.02 428.0 

Exempel 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)); } } 
Testa det nu

Produktion:

 78730343 4839233 -9223372036854775808