Тхе јава.ланг.Матх.абс() метода враћа апсолутну (позитивну) вредност инт вредности. Овај метод даје апсолутну вредност аргумента. Аргумент може бити инт, доубле, лонг и флоат.
Синтакса:
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
- Ако дамо позитивну или негативну вредност као аргумент, овај метод ће дати позитивну вредност.
- Ако је аргумент Инфинити , овај метод ће резултирати Поситиве Инфинити .
- Ако је аргумент НаН , овај метод ће се вратити НаН .
- Ако је аргумент једнак вредности Интегер.МИН_ВАЛУЕ или Лонг.МИН_ВАЛУЕ, најнегативније репрезентабилне вредности инт или лонг вредности, резултат је та иста вредност, која је негативна.
Пример 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)); } }Тестирајте одмах
Излаз:
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