logo

Java metóda Math.abs().

The java.lang.Math.abs() metóda vráti absolútnu (kladnú) hodnotu int hodnoty. Táto metóda dáva absolútnu hodnotu argumentu. Argument môže byť int, double, long a float.

pole štruktúry v jazyku c

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) 

Parametre:

 The argument whose absolute value is to be determined 

Návrat:

 This method returns the absolute value of the argument 
  • Ak ako argument uvedieme kladnú alebo zápornú hodnotu, výsledkom tejto metódy bude kladná hodnota.
  • Ak je argument Nekonečno výsledkom bude táto metóda Pozitívne nekonečno .
  • Ak je argument NaN , táto metóda sa vráti NaN .
  • Ak sa argument rovná hodnote Integer.MIN_VALUE alebo Long.MIN_VALUE, čo je najzápornejšia reprezentovateľná int hodnota alebo dlhá hodnota, výsledkom je rovnaká hodnota, ktorá je záporná.

Príklad 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)); } } 
Vyskúšajte to

Výkon:

 78 48 -2147483648 

Príklad 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)); } } 
Vyskúšajte to

Výkon:

 47.63 894.37 Infinity 

Príklad 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)); } } 
Vyskúšajte to

Výkon:

 73.02 428.0 

Príklad 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)); } } 
Vyskúšajte to

Výkon:

 78730343 4839233 -9223372036854775808