Java Data Type Tutorial - 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) {

    Short shortObject = new Short("1000");
    System.out.println(shortObject);


  }
}

The output: