logo

Java Math.abs() metode

The java.lang.Math.abs() metode atgriež int vērtības absolūto (pozitīvo) vērtību. Šī metode dod argumenta absolūto vērtību. Arguments var būt int, double, long un float.

Sintakse:

 public static int abs(int i) public static double abs(double d) public static float abs(float f) public static long abs(long lng) 

Parametri:

 The argument whose absolute value is to be determined 

Atgriezties:

 This method returns the absolute value of the argument 
  • Ja mēs kā argumentu sniedzam pozitīvu vai negatīvu vērtību, šī metode radīs pozitīvu vērtību.
  • Ja arguments ir Bezgalība , šī metode radīs Pozitīvā bezgalība .
  • Ja arguments ir NaN , šī metode atgriezīsies NaN .
  • Ja arguments ir vienāds ar vērtību Vesels skaitlis.MIN_VALUE vai Long.MIN_VALUE, kas ir visnegatīvākā reprezentējamā int vērtība vai garā vērtība, rezultāts ir tā pati vērtība, kas ir negatīva.

1. piemērs:

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 78 48 -2147483648 

2. piemērs:

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 47.63 894.37 Infinity 

3. piemērs:

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 73.02 428.0 

4. piemērs:

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 78730343 4839233 -9223372036854775808