Friday, November 21, 2025
HomeLanguagesJavaDouble shortValue() method in Java with examples

Double shortValue() method in Java with examples

The shortValue() method of Double class is a built in method to return the value specified by the calling object as short after type casting.
Syntax
 

DoubleObject.shortValue()

Return Value: It return the value of DoubleObject as short.
Below programs illustrate shortValue() method in Java: 
Program 1:
 

Java




// Java code to demonstrate
// Double shortValue() method
 
class GFG {
    public static void main(String[] args)
    {
 
        // Double value
        Double a = 17.47;
 
        // wrapping the Double value
        // in the wrapper class Double
        Double b = new Double(a);
 
        // shortValue of the Double Object
        short output = b.shortValue();
 
        // print shorting the output
        System.out.println("Short value of "
                           + b + " is : " + output);
    }
}


Output: 

Short value of 17.47 is : 17

 

Program 2:
 

Java




// Java code to demonstrate
// Double shortValue() method
 
class GFG {
    public static void main(String[] args)
    {
 
        String value = "54.1";
 
        // wrapping the Double value
        // in the wrapper class Double
        Double b = new Double(value);
 
        // shortValue of the Double Object
        short output = b.shortValue();
 
        // print shorting the output
        System.out.println("Short value of "
                           + b + " is : " + output);
    }
}


Output: 

Short value of 54.1 is : 54

 

RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6782 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS