Absolute value refers to the positive value corresponding to the number passed as in arguments. Now geek you must be wondering what exactly it means so by this it is referred no matter what be it positive or negative number been passed for computation, the computation will occur over the positive corresponding number in both cases. So in order to compute the absolute value for any number we do have a specified method in Java referred to as abs() present inside Math class present inside java.lang package.
The java.lang.Math.abs() returns the absolute value of a given argument.
- If the argument is not negative, the argument is returned.
- If the argument is negative, the negation of the argument is returned.
Syntax :
public static DataType abs(DataType a)
Parameters: Int, long, float, or double value whose absolute value is to be determined
Returns Type: This method returns the absolute value of the argument.
Exceptions Thrown: ArithmeticException
Tip: One must be aware of generic return type as follows:
- If the argument is of double or float type:
- If the argument is positive zero or negative zero, the result is positive zero.
- If the argument is infinite, the result is positive infinity.
- If the argument is NaN, the result is NaN.
- If the argument is of int or long type: If the argument is equal to the value of Integer.MIN_VALUE or Long.MIN_VALUE, the most negative representable int or long value, the result is that same value, which is negative.
Example 1:
Java
import java.lang.Math;
class GFG {
public static void main(String[] args)
{
int n = - 7 ;
System.out.println(
"Without applying Math.abs() method : " + n);
int value = Math.abs(n);
System.out.println(
"With applying Math.abs() method : " + value);
}
}
|
Output
Without applying Math.abs() method : -7
With applying Math.abs() method : 7
Example 2:
Java
import java.lang.Math;
class GFG {
public static void main(String args[])
{
float a = 123 .0f;
float b = - 34 .2323f;
double c = - 0.0 ;
double d = - 999.3456 ;
int e = - 123 ;
int f = - 0 ;
long g = - 12345678 ;
long h = 98765433 ;
System.out.println(Math.abs(a));
System.out.println(Math.abs(b));
System.out.println(Math.abs( 1.0 / 0 ));
System.out.println(Math.abs(c));
System.out.println(Math.abs(d));
System.out.println(Math.abs(e));
System.out.println(Math.abs(f));
System.out.println(Math.abs(Integer.MIN_VALUE));
System.out.println(Math.abs(g));
System.out.println(Math.abs(h));
System.out.println(Math.abs(Long.MIN_VALUE));
}
}
|
Output
123.0
34.2323
Infinity
0.0
999.3456
123
0
-2147483648
12345678
98765433
-9223372036854775808
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!