Java - Numbers Class
Java - Numbers Class
Normally, when we work with Numbers, we use primitive data types such as byte, int, long,
double, etc.
Example
int i = 5000;
However, in development, we come across situations where we need to use objects instead of
primitive data types. In order to achieve this, Java provides wrapper classes.
All the wrapper classes (Integer, Long, Byte, Double, Float, Short) are subclasses of the abstract
class Number.
The object of the wrapper class contains or wraps its respective primitive data type. Converting
primitive data types into object is called boxing, and this is taken care by the compiler.
Therefore, while using a wrapper class you just need to pass the value of the primitive data type
to the constructor of the Wrapper class.
And the Wrapper object will be converted back to a primitive data type, and this process is called
unboxing. The Number class is part of the java.lang package.
Example
Live Demo
public class Test {
System.out.println(x);
https://www.tutorialspoint.com/java/java_numbers.htm 1/7
15/04/2022, 16:15 Java - Numbers Class
Output
15
When x is assigned an integer value, the compiler boxes the integer because x is integer object.
Later, x is unboxed so that they can be added as an integer.
Number Methods
Following is the list of the instance methods that all the subclasses of the Number class
implements −
https://www.tutorialspoint.com/java/java_numbers.htm 2/7
15/04/2022, 16:15 Java - Numbers Class
1 xxxValue()
Converts the value of this Number object to the xxx data type and returns it.
2 compareTo()
Compares this Number object to the argument.
3 equals()
Determines whether this number object is equal to the argument.
4 valueOf()
Returns an Integer object holding the value of the specified primitive.
5 toString()
Returns a String object representing the value of a specified int or Integer.
6 parseInt()
This method is used to get the primitive data type of a certain String.
7 abs()
Returns the absolute value of the argument.
8 ceil()
Returns the smallest integer that is greater than or equal to the argument. Returned
as a double.
9 floor()
Returns the largest integer that is less than or equal to the argument. Returned as a
double.
10 rint()
Returns the integer that is closest in value to the argument. Returned as a double.
11 round()
Returns the closest long or int, as indicated by the method's return type to the
argument.
12 min()
https://www.tutorialspoint.com/java/java_numbers.htm 3/7
15/04/2022, 16:15 Java - Numbers Class
13 max()
Returns the larger of the two arguments.
14 exp()
Returns the base of the natural logarithms, e, to the power of the argument.
15 log()
Returns the natural logarithm of the argument.
16 pow()
Returns the value of the first argument raised to the power of the second argument.
17 sqrt()
Returns the square root of the argument.
18 sin()
Returns the sine of the specified double value.
19 cos()
Returns the cosine of the specified double value.
20 tan()
Returns the tangent of the specified double value.
21 asin()
Returns the arcsine of the specified double value.
22 acos()
Returns the arccosine of the specified double value.
23 atan()
Returns the arctangent of the specified double value.
24 atan2()
Converts rectangular coordinates (x, y) to polar coordinate (r, theta) and returns
theta.
https://www.tutorialspoint.com/java/java_numbers.htm 4/7
15/04/2022, 16:15 Java - Numbers Class
25 toDegrees()
Converts the argument to degrees.
26 toRadians()
Converts the argument to radians.
27 random()
Returns a random number.
What is Next?
In the next section, we will be going through the Character class in Java. You will be learning
how to use object Characters and primitive data type char in Java.
16 Lectures 2 hours
Malhar Lathkar
More Detail
Video
19 Lectures 5 hours
Malhar Lathkar
More Detail
https://www.tutorialspoint.com/java/java_numbers.htm 5/7
15/04/2022, 16:15 Java - Numbers Class
Video
Anadi Sharma
More Detail
Video
More Detail
Video
Monica Mittal
More Detail
Video
https://www.tutorialspoint.com/java/java_numbers.htm 6/7
15/04/2022, 16:15 Java - Numbers Class
76 Lectures 7 hours
Arnab Chakraborty
More Detail
https://www.tutorialspoint.com/java/java_numbers.htm 7/7