logo

Java Math.abs() -menetelmä

The java.lang.Math.abs() menetelmä palauttaa int-arvon absoluuttisen (positiivisen) arvon. Tämä menetelmä antaa argumentin absoluuttisen arvon. Argumentti voi olla int, double, long ja float.

Syntaksi:

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

Parametrit:

 The argument whose absolute value is to be determined 

Palata:

 This method returns the absolute value of the argument 
  • Jos annamme argumentiksi positiivisen tai negatiivisen arvon, tämä menetelmä tuottaa positiivisen arvon.
  • Jos argumentti on ääretön , tämä menetelmä johtaa Positiivinen Infinity .
  • Jos argumentti on NaN , tämä menetelmä palaa NaN .
  • Jos argumentti on yhtä suuri kuin Kokonaisluku.MIN_ARVO tai Pitkä.MIN_ARVO, negatiivisin edustava int-arvo tai pitkä arvo, tuloksena on sama arvo, joka on negatiivinen.

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 78 48 -2147483648 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 47.63 894.37 Infinity 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 73.02 428.0 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 78730343 4839233 -9223372036854775808