The java.lang.Math.abs() metoda vrací absolutní (kladnou) hodnotu int hodnoty. Tato metoda udává absolutní hodnotu argumentu. Argument může být int, double, long a 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)
Parametry:
The argument whose absolute value is to be determined
Vrátit se:
This method returns the absolute value of the argument
- Pokud jako argument uvedeme kladnou nebo zápornou hodnotu, výsledkem této metody bude kladná hodnota.
- Pokud je argument Nekonečno , výsledkem bude tato metoda Pozitivní nekonečno .
- Pokud je argument NaN , tato metoda se vrátí NaN .
- Pokud je argument roven hodnotě Integer.MIN_VALUE nebo Long.MIN_VALUE, nejzápornější reprezentovatelné hodnotě int nebo dlouhé hodnotě, výsledkem je stejná hodnota, která je záporná.
Pří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)); } }Otestujte to hned
Výstup:
78 48 -2147483648
Pří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)); } }Otestujte to hned
Výstup:
47.63 894.37 Infinity
Pří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)); } }Otestujte to hned
Výstup:
73.02 428.0
Pří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)); } }Otestujte to hned
Výstup:
78730343 4839233 -9223372036854775808