Open In App
Related Articles

Number.shortValue() method in java with examples

Improve Article
Improve
Save Article
Save
Like Article
Like

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:




// java program that demonstrates
// Number.shortValue() method
public class gfg {
  
    public static void main(String[] args)
    {
  
        // get a number as float
        Float x = new Float(7854123456f);
        // print the value as short
        System.out.println(x.shortValue());
  
        // get a number as double
        Double y = new Double(98774856);
        // print the value as short
        System.out.println(y.shortValue());
    }
}


Output:

-1
12104

Program 2:




// java program that demonstrates
// Number.shortValue() method
  
public class gfg {
  
    public static void main(String[] args)
    {
  
        // get a number as float
        Float x = new Float(78f);
        // print the value as short
        System.out.println(x.shortValue());
  
        // get a number as double
        Double y = new Double(56.23);
        // print the value as short
        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
Previous
Next
Similar Reads
Complete Tutorials