Short(String s) constructor from Short has the following syntax.
public Short(String s) throws NumberFormatException
In the following code shows how to use Short.Short(String s) constructor.
public class Main { public static void main(String[] args) { Short shortObject = new Short("1000"); System.out.println(shortObject); } }
The output: