Java tutorial
public class Main { public static void main(String[] args) { Short shortObject = new Short("10"); long l = shortObject.longValue(); System.out.println("long:" + l); } }