Java Short(String s) Constructor
Syntax
Short(String s) constructor from Short has the following syntax.
public Short(String s) throws NumberFormatException
Example
In the following code shows how to use Short.Short(String s) constructor.
public class Main {
public static void main(String[] args) {
//w ww. j a va 2s .c om
Short shortObject = new Short("1000");
System.out.println(shortObject);
}
}
The output: