Det java.lang.Math.abs() metode returnerer den absolutte (positive) værdi af en int-værdi. Denne metode giver den absolutte værdi af argumentet. Argumentet kan være int, double, long og float.
Syntaks:
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
Vend tilbage:
This method returns the absolute value of the argument
- Hvis vi giver positiv eller negativ værdi som argument, vil denne metode resultere i positiv værdi.
- Hvis argumentet er Uendelighed , vil denne metode resultere Positiv uendelighed .
- Hvis argumentet er NaN , vil denne metode vende tilbage NaN .
- Hvis argumentet er lig med værdien af Integer.MIN_VALUE eller Long.MIN_VALUE, den mest negative repræsentative int-værdi eller lange værdi, er resultatet den samme værdi, som er negativ.
Eksempel 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 det nu
Produktion:
konvertering af en streng til dato
78 48 -2147483648
Eksempel 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 det nu
Produktion:
java indsættelse sortering
47.63 894.37 Infinity
Eksempel 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 det nu
Produktion:
73.02 428.0
Eksempel 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 det nu
Produktion:
78730343 4839233 -9223372036854775808