- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我做了一些关于方法的测试。我遇到一个案例,让我完全困惑。这是一个例子。
public abstract class Ge {
private boolean valid;
public Ge(boolean valid) {
this.valid = valid;
}
@Override
public int hashCode() {
return this.getClass().getSimpleName().hashCode();
}
@Override
public boolean equals(Object obj) {
if (getClass() == obj.getClass())
return true;
return false;
}
}
public class Ge1 extends Ge{
public Ge1(boolean valid) {
super(valid);
}
}
public class Ge1 extends Ge{
public Ge1(boolean valid) {
super(valid);
}
}
public class Ge2 extends Ge{
public Ge2(boolean valid) {
super(valid);
}
}
测试类:
public static void main(String args[]){
Ge1 ge1=new Ge1(true);
System.out.println(Integer.toHexString(System.identityHashCode(ge1)));
Ge1 ge11=new Ge1(false);
System.out.println(Integer.toHexString(System.identityHashCode(ge11)));
}
虽然System.identityHashCode在eclipse控制台中的值不同,但 Debug模式下的ge1和ge11变量具有相同的引用。
但是,如果我删除 Ge 类中的 hashcode 和 equals,ge1 和 ge11 就会有不同的引用。
我不明白为什么 ge1 和 ge11 具有相同的 hashcode 和 equals 引用?
最佳答案
对象的 toString()
方法记录为
this method returns a string equal to the value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
您的算法为 Ge1 的所有实例提供相同的 hashCode。
因此 Ge1 的所有实例也具有由 toString()
返回的相同值,并由 Eclipse 显示。
关于java - HashCode和equals对对象实例化的影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34565671/
class UserScoring implements Comparable { User user; int score; UserScoring(
当重写 Java 中的 equals() 和 hashcode() 方法时,为什么不经常使用它: public int hashCode() { return (int) this.hashC
给定java Object#hashCode文档快照: As much as is reasonably practical, the hashCode method defined by class
下面的代码(sign.hashCode())是给我签名的hashCode还是内存中对象的hash? try { PackageInfo packageInfo = getPackageMana
考虑: String[] segments = {"asdf", "qwerty", "blahblah", "alongerstring", "w349fe3434"}; String fullSt
在审查大型代码库时,我经常遇到这样的情况: @Override public int hashCode() { return someFieldValue.hashCode(); } 程序员不
在以下情况下,与下面的函数发生 HashCode 冲突的可能性有多大。 key[0]、key[1]、key[2]、key[3] 的随机整数值 使用具有以下约束的随机键值 键[0] <1,000,000
从 Java 7 开始,我们有了 o.hashCode(); Objects.hashCode(o); Objects.hash(o); 前两个与空检查大致相同,但最后一个是什么? When a si
这个问题已经有答案了: Objects.hash() vs Objects.hashCode(), clarification needed (3 个回答) 已关闭 6 年前。 一个简单、简短的问题:
我是否需要使用super.hashcode()来计算this.hashcode()? IDE(例如 IntelliJ Idea)可以生成 equals 和 hashcode。它可以使用 java.ut
class A { } class B extends A { void m1(){ System.out.println(this.hashCode());
我查看了Arrays.hashCode(char[] c)的源代码 我不太确定它适用的算法是否在所有情况下都能正常工作。 public static int hashCode(int a[])
我有两个表具有一对一的关系,如下所示: @Entity @Data @NoArgsConstructor @AllArgsConstructor public class Book { @Id
为什么stringObject的hashcode是我提供的字符串? String s = new String(); // here the hascode is 0. 但是当我获得我创建的某个对象的
public abstract class HolidayPackageVariant { private HolidayPackage holidayPackage; private String
这两个代码片段有什么区别? 片段 1: Object o = new Object(); int i = Objects.hashCode(o); 片段 2: Object o = new Objec
在 Java 8 中有一个类 java.util.Objects,其中包含 hashCode() 方法。同时 Google Guava 19 包含 com.google.common.base.Obj
我的一个类(class)中有以下方法。它只是 HashMap 的公共(public)包装器(名为 teamOfPlayer,具有 Player 对象的键和 Integer 对象的值),仅此而已。 pu
我在这里做错了什么? @Override public int hashCode() { HashCodeBuilder has
我有以下程序。 Employee employee1 = new Employee("Raghav1", 101); Employee employee2 = new Employee("Raghav
我是一名优秀的程序员,十分优秀!