Java.lang.Short.shortValue() Method
Advertisements
Description
The java.lang.Short.shortValue() method returns the value of this Short as a short.
Declaration
Following is the declaration for java.lang.Short.shortValue() method
public short shortValue()
Parameters
NA
Return Value
This method returns the numeric value represented by this object after conversion to type short.
Exception
NA
Example
The following example shows the usage of java.lang.Short.shortValue() method.
package com.tutorialspoint;
import java.lang.*;
public class ShortDemo {
public static void main(String[] args) {
// create short object and assign value to it
short sval = 50;
Short sobj = new Short(sval);
// returns short value of Short
short shortValue = sobj.shortValue();
// printing short value
System.out.println("short value of given Short is = " + shortValue);
}
}
Let us compile and run the above program, this will produce the following result:
short value of given Short is = 50