package com.EqualsExercise01; public class Test { /* 1.提高具有哈希结构的容器的效率 2.两个引用或者多个引用,如果指向的是同一个对象,则哈希值肯定一样。 3.两个引用或者多个引用,如果指向的不是同一个对象,则哈希值肯定不一样(一样的概率极低) 4.哈希值主要是根据地址号来的! 不能完全将哈希值等价于地址 */ public static void main(String[] args) { Person person = new Person(); Person person2 = new Person(); Person person1 = person; System.out.println(person.hashCode()); System.out.println(person1.hashCode()); System.out.println(person2.hashCode()); } } class Person { }
标签:Person,System,hashCode,person,哈希,out From: https://www.cnblogs.com/shuqiqi/p/17038556.html