Create Short from short value
public class Main {
public static void main(String[] argv) throws Exception {
Short refShort = new Short((short) 123);
short s = refShort.shortValue();
}
}
public class Main {
public static void main(String[] argv) throws Exception {
Short refShort = new Short((short) 123);
short s = refShort.shortValue();
}
}