The java.lang.Math.abs() Метод повертає абсолютне (позитивне) значення int. Цей метод дає абсолютне значення аргументу. Аргумент може бути int, double, long і float.
Синтаксис:
public static int abs(int i) public static double abs(double d) public static float abs(float f) public static long abs(long lng)
Параметри:
The argument whose absolute value is to be determined
Повернення:
This method returns the absolute value of the argument
- Якщо ми надаємо позитивне або негативне значення як аргумент, цей метод дасть позитивне значення.
- Якщо аргумент є Нескінченність , цей метод дає результат Позитивна нескінченність .
- Якщо аргумент є NaN , цей метод повернеться NaN .
- Якщо аргумент дорівнює значенню Integer.MIN_VALUE або Long.MIN_VALUE, найбільш негативно представленому значенню int або long значенню, результатом є те саме значення, яке є від’ємним.
приклад 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)); } }Перевірте зараз
Вихід:
рядок java cmp
78 48 -2147483648
приклад 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)); } }Перевірте зараз
Вихід:
Кет тимпф чистий капітал
47.63 894.37 Infinity
приклад 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)); } }Перевірте зараз
Вихід:
73.02 428.0
Приклад 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)); } }Перевірте зараз
Вихід:
78730343 4839233 -9223372036854775808