<bdo id='aCj4M'></bdo><ul id='aCj4M'></ul>
  • <small id='aCj4M'></small><noframes id='aCj4M'>

    <i id='aCj4M'><tr id='aCj4M'><dt id='aCj4M'><q id='aCj4M'><span id='aCj4M'><b id='aCj4M'><form id='aCj4M'><ins id='aCj4M'></ins><ul id='aCj4M'></ul><sub id='aCj4M'></sub></form><legend id='aCj4M'></legend><bdo id='aCj4M'><pre id='aCj4M'><center id='aCj4M'></center></pre></bdo></b><th id='aCj4M'></th></span></q></dt></tr></i><div id='aCj4M'><tfoot id='aCj4M'></tfoot><dl id='aCj4M'><fieldset id='aCj4M'></fieldset></dl></div>
    <legend id='aCj4M'><style id='aCj4M'><dir id='aCj4M'><q id='aCj4M'></q></dir></style></legend>

  • <tfoot id='aCj4M'></tfoot>

      1. HashSet 包含重复的条目

        HashSet contains duplicate entries(HashSet 包含重复的条目)
          <tbody id='4vWGi'></tbody>
          <bdo id='4vWGi'></bdo><ul id='4vWGi'></ul>
          1. <small id='4vWGi'></small><noframes id='4vWGi'>

              <legend id='4vWGi'><style id='4vWGi'><dir id='4vWGi'><q id='4vWGi'></q></dir></style></legend>

                <tfoot id='4vWGi'></tfoot>
                  <i id='4vWGi'><tr id='4vWGi'><dt id='4vWGi'><q id='4vWGi'><span id='4vWGi'><b id='4vWGi'><form id='4vWGi'><ins id='4vWGi'></ins><ul id='4vWGi'></ul><sub id='4vWGi'></sub></form><legend id='4vWGi'></legend><bdo id='4vWGi'><pre id='4vWGi'><center id='4vWGi'></center></pre></bdo></b><th id='4vWGi'></th></span></q></dt></tr></i><div id='4vWGi'><tfoot id='4vWGi'></tfoot><dl id='4vWGi'><fieldset id='4vWGi'></fieldset></dl></div>
                  本文介绍了HashSet 包含重复的条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当 equals 方法说它们相同时,HashSet 只存储值.我就是这么想的.

                  A HashSet only stores values ones, when the equals method says that they're the same. Thats what I thought.

                  但是现在我将元素添加到 HashSet 中,其中 equals 方法返回 true 并且集合的大小仍在增长?对不起,我很困惑.一些我错了的提示会很好.

                  But now i'm adding Elements to a HashSet where the equals method returns true and the size of the set still grows?? sorry I'm confused. Some hints where i'm wrong would be nice.

                  Element t1 = new Element(false, false, false, false);
                  Element t2 = new Element(true, true, true, true);
                  Element t3 = new Element(false, false, false, false);
                  
                  if (t1.equals(t3))
                      System.out.println("they're equal");
                  
                  Set<Element> set = new HashSet<>();
                  
                  set.add(t1);
                  set.add(t2);
                  set.add(t3);
                  
                  System.out.println("set size: " + set.size());
                  

                  所以在这个例子中我的控制台输出是:

                  so in this example my console output is:

                  他们是平等的
                  设置大小:3

                  they're equal
                  set size: 3

                  这对我来说毫无意义.. 大小应该是 2 吗?

                  That makes no sense to me.. shouldn the size be 2?

                  推荐答案

                  问题是你的 Element 类没有覆盖 equalshashCode 方法或这些实现被破坏了.

                  The problem is that your Element class has not overridden the equals and hashCode methods or these implementations are broken.

                  来自 对象#equals 方法 javadoc:

                  From Object#equals method javadoc:

                  equals 方法在非空对象引用上实现等价关系:

                  The equals method implements an equivalence relation on non-null object references:

                  • 它是自反的:对于任何非空引用值 x,x.equals(x) 应该返回 true.
                  • 它是对称的:对于任何非空引用值 x 和 y,当且仅当 y.equals(x) 返回 true 时,x.equals(y) 才应该返回 true.
                  • 它是可传递的:对于任何非空引用值 x、y 和 z,如果 x.equals(y) 返回 true 并且 y.equals(z) 返回 true,则 x.equals(z) 应该返回 true.这是一致的:对于任何非空引用值 x 和 y,-x.equals(y) 的多次调用始终返回 true 或始终返回 false,前提是没有修改对象上 equals 比较中使用的信息.
                  • 对于任何非空引用值 x,x.equals(null) 应该返回 false.

                  来自 Object#hashCode 方法javadoc:

                  From Object#hashCode method javadoc:

                  hashCode的一般合约是:

                  The general contract of hashCode is:

                  • 只要在 Java 应用程序执行期间对同一个对象多次调用,hashCode 方法必须始终返回相同的整数,前提是没有修改对象上的 equals 比较中使用的信息.该整数不需要在应用程序的一次执行与同一应用程序的另一次执行之间保持一致.
                  • 如果根据 equals(Object) 方法,两个对象相等,则对两个对象中的每一个调用 hashCode 方法必须产生相同的整数结果.
                  • 不要求如果两个对象根据equals(java.lang.Object)方法不相等,那么对两个对象中的每一个调用hashCode方法必须产生不同的整数结果.但是,程序员应该意识到,为不相等的对象生成不同的整数结果可能会提高哈希表的性能.

                  确保这些方法的实现满足这些规则,并且您的 Set(由 HashSet 支持)将按预期工作.

                  Make sure the implementations of these methods satisfy these rules and your Set (backed by a HashSet) will work as expected.

                  这篇关于HashSet 包含重复的条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Compiling C++ for the JVM(为 JVM 编译 C++)
                  Compile to java bytecode (without using Java)(编译成java字节码(不使用Java))
                  How to drive C#, C++ or Java compiler to compute 1+2+3+...+1000 at compile time?(如何在编译时驱动 C#、C++ 或 Java 编译器计算 1+2+3+...+1000?)
                  Java ClassLoader: load same class twice(Java ClassLoader:两次加载相同的类)
                  How to debug .class files in ECLIPSE?(如何在 ECLIPSE 中调试 .class 文件?)
                  Java quot;The blank final field may not have been initializedquot; Anonymous Interface vs Lambda Expression(Java“可能尚未初始化空白的最终字段匿名接口与 Lambda 表达式)

                  <i id='yRiZR'><tr id='yRiZR'><dt id='yRiZR'><q id='yRiZR'><span id='yRiZR'><b id='yRiZR'><form id='yRiZR'><ins id='yRiZR'></ins><ul id='yRiZR'></ul><sub id='yRiZR'></sub></form><legend id='yRiZR'></legend><bdo id='yRiZR'><pre id='yRiZR'><center id='yRiZR'></center></pre></bdo></b><th id='yRiZR'></th></span></q></dt></tr></i><div id='yRiZR'><tfoot id='yRiZR'></tfoot><dl id='yRiZR'><fieldset id='yRiZR'></fieldset></dl></div>
                  <tfoot id='yRiZR'></tfoot>
                    <tbody id='yRiZR'></tbody>
                    • <bdo id='yRiZR'></bdo><ul id='yRiZR'></ul>
                      1. <small id='yRiZR'></small><noframes id='yRiZR'>

                        • <legend id='yRiZR'><style id='yRiZR'><dir id='yRiZR'><q id='yRiZR'></q></dir></style></legend>