package class_ex; /** * Hashcode: ä¸»è¦æ¯ç¢ºèª object æ¯å¦çºç¸åï¼éè¦æé equalsã * * Reference: * - https://www.gushiciku.cn/pl/gkK1/zh-tw */ public class HashCodeExample { public static void main(String[] args) { Integer a = 1; Integer b = 1; System.out.println("hash code of a: " + a.hashCode()); System.out.println("hash code of b: " + b.hashCode()); } }