Java tutorial
public class Main { public static void main(String[] args) { Short shortValue1 = new Short("10"); Short shortValue2 = new Short("11"); System.out.println(shortValue1.equals(shortValue2)); } }