The java.lang.Number.shortValue() is an inbuilt method in java that returns the value of the specified number casted to short data type. This may involve rounding or truncation.
Syntax:
public abstract short shortValue()
Parameters: This method does not accepts any parameter.
Return value: This method returns the numeric value represented by this object after conversion to type short.
Below programs illustrate the Number.shortValue() method:
Program 1:
public class gfg {
public static void main(String[] args)
{
Float x = new Float(7854123456f);
System.out.println(x.shortValue());
Double y = new Double( 98774856 );
System.out.println(y.shortValue());
}
}
|
Output:
-1
12104
Program 2:
public class gfg {
public static void main(String[] args)
{
Float x = new Float(78f);
System.out.println(x.shortValue());
Double y = new Double( 56.23 );
System.out.println(y.shortValue());
}
}
|
Output:
78
56
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!
Last Updated :
20 Jun, 2018
Like Article
Save Article