A java.lang.Math.abs() metódus egy int érték abszolút (pozitív) értékét adja vissza. Ez a módszer megadja az argumentum abszolút értékét. Az argumentum lehet int, double, long és float.
Szintaxis:
public static int abs(int i) public static double abs(double d) public static float abs(float f) public static long abs(long lng)
Paraméterek:
The argument whose absolute value is to be determined
Visszatérés:
This method returns the absolute value of the argument
- Ha pozitív vagy negatív értéket adunk meg argumentumként, akkor ez a módszer pozitív értéket fog eredményezni.
- Ha az érv az végtelenség , ez a módszer azt eredményezi Pozitív Infinity .
- Ha az érv az NaN , ez a módszer visszatér NaN .
- Ha az argumentum egyenlő az Integer.MIN_VALUE vagy Long.MIN_VALUE értékével, amely a legnegatívabb reprezentálható int érték vagy long érték, akkor az eredmény ugyanaz az érték lesz, amely negatív.
1. példa:
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)); } }Tesztelje most
Kimenet:
78 48 -2147483648
2. példa:
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)); } }Tesztelje most
Kimenet:
47.63 894.37 Infinity
3. példa:
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)); } }Tesztelje most
Kimenet:
73.02 428.0
4. példa:
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)); } }Tesztelje most
Kimenet:
78730343 4839233 -9223372036854775808