logo

Metoda Java Math.abs().

The java.lang.Math.abs() metoda vrne absolutno (pozitivno) vrednost vrednosti int. Ta metoda daje absolutno vrednost argumenta. Argument je lahko int, double, long in float.

Sintaksa:

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

Parametri:

 The argument whose absolute value is to be determined 

Vrnitev:

 This method returns the absolute value of the argument 
  • Če kot argument podamo pozitivno ali negativno vrednost, bo ta metoda dala pozitivno vrednost.
  • Če je argument neskončnost , bo ta metoda povzročila Pozitivna neskončnost .
  • Če je argument NaN , se bo ta metoda vrnila NaN .
  • Če je argument enak vrednosti Integer.MIN_VALUE ali Long.MIN_VALUE, najbolj negativno predstavljeni int vrednosti ali dolgi vrednosti, je rezultat ista vrednost, ki je negativna.

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 78 48 -2147483648 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 47.63 894.37 Infinity 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 73.02 428.0 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 78730343 4839233 -9223372036854775808