De java.lang.Math.abs() methode retourneert de absolute (positieve) waarde van een int-waarde. Deze methode geeft de absolute waarde van het argument. Het argument kan int, double, long en float zijn.
Syntaxis:
public static int abs(int i) public static double abs(double d) public static float abs(float f) public static long abs(long lng)
Parameters:
The argument whose absolute value is to be determined
Opbrengst:
This method returns the absolute value of the argument
- Als we een positieve of negatieve waarde als argument opgeven, zal deze methode een positieve waarde opleveren.
- Als de argumentatie dat is Oneindigheid , deze methode zal resulteren Positieve oneindigheid .
- Als de argumentatie dat is NaN , zal deze methode terugkeren NaN .
- Als het argument gelijk is aan de waarde van Integer.MIN_VALUE of Long.MIN_VALUE, de meest negatief representeerbare int-waarde of lange waarde, is het resultaat dezelfde waarde, die negatief is.
Voorbeeld 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)); } }Test het nu
Uitgang:
78 48 -2147483648
Voorbeeld 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)); } }Test het nu
Uitgang:
47.63 894.37 Infinity
Voorbeeld 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)); } }Test het nu
Uitgang:
73.02 428.0
Voorbeeld 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)); } }Test het nu
Uitgang:
78730343 4839233 -9223372036854775808