logo

Java Math.abs() metodas

The java.lang.Math.abs() metodas grąžina absoliučią (teigiamą) int reikšmės reikšmę. Šis metodas suteikia absoliučią argumento vertę. Argumentas gali būti int, double, long ir float.

Sintaksė:

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

Parametrai:

 The argument whose absolute value is to be determined 

Grąžinti:

 This method returns the absolute value of the argument 
  • Jei kaip argumentą pateiksime teigiamą arba neigiamą reikšmę, šis metodas duos teigiamą vertę.
  • Jei argumentas yra Begalybė , šis metodas duos rezultatą Teigiama begalybė .
  • Jei argumentas yra NaN , šis metodas grįš NaN .
  • Jei argumentas yra lygus Integer.MIN_VALUE arba Long.MIN_VALUE reikšmei, neigiamai pavaizduojamai int vertei arba ilgajai vertei, rezultatas yra ta pati reikšmė, kuri yra neigiama.

1 pavyzdys:

 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)); } } 
Išbandykite dabar

Išvestis:

 78 48 -2147483648 

2 pavyzdys:

 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)); } } 
Išbandykite dabar

Išvestis:

 47.63 894.37 Infinity 

3 pavyzdys:

 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)); } } 
Išbandykite dabar

Išvestis:

 73.02 428.0 

4 pavyzdys:

 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)); } } 
Išbandykite dabar

Išvestis:

 78730343 4839233 -9223372036854775808