[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/AvinandanBose/JavaCollectionFramework/main/hashcodeDemo1.java [Back]  [Original]

public class hashcodeDemo1 {
 public static void main(String[] args) {
    Integer i = new Integer(1);
    Integer j = new Integer(2);
    Integer k = new Integer(3);

    System.out.println(i.hashCode());
    System.out.println(j.hashCode());
    System.out.println(k.hashCode());

 }
    
}

Web Proxy Viewer  |  New URL  |  Original Page