logo

Metodo Java Math.abs()

IL java.lang.Math.abs() Il metodo restituisce il valore assoluto (positivo) di un valore int. Questo metodo fornisce il valore assoluto dell'argomento. L'argomento può essere int, double, long e float.

Sintassi:

 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 

Ritorno:

 This method returns the absolute value of the argument 
  • Se forniamo un valore positivo o negativo come argomento, questo metodo risulterà un valore positivo.
  • Se l'argomento è Infinito , questo metodo risulterà Infinito positivo .
  • Se l'argomento è NaN , questo metodo verrà restituito NaN .
  • Se l'argomento è uguale al valore di Integer.MIN_VALUE o Long.MIN_VALUE, il valore int o long rappresentabile più negativo, il risultato è lo stesso valore, che è negativo.

Esempio 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)); } } 
Provalo adesso

Produzione:

attore rohit shetty
 78 48 -2147483648 

Esempio 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)); } } 
Provalo adesso

Produzione:

usa quante città
 47.63 894.37 Infinity 

Esempio 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)); } } 
Provalo adesso

Produzione:

 73.02 428.0 

Esempio 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)); } } 
Provalo adesso

Produzione:

 78730343 4839233 -9223372036854775808