List of usage examples for java.lang Short hashCode
@Override public int hashCode()
From source file:Main.java
public static void main(String[] args) { short shortNum1 = 150; Short ShortObj1 = new Short(shortNum1); int hcode = ShortObj1.hashCode(); System.out.println("Hashcode for this Short ShortObj1 = " + hcode); }