hashcode该怎么重写,举个例子
时间: 2023-03-12 10:11:09 浏览: 146
重写equals和hashcode方法_equals_重写equals和hashcode方法_
重写hashcode的方法有很多种,但最经典的方法是重新实现 Java 类的equals()和hashCode()方法。例如,可以重写如下代码:@Overridepublic int hashCode() {int result = 1;result = 31 * result + ((name == null) ? 0 : name.hashCode());result = 31 * result + age;return result; }
阅读全文