<tfoot id='AtvAd'></tfoot>

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

        <bdo id='AtvAd'></bdo><ul id='AtvAd'></ul>
    2. java的行为不一致==

      时间:2023-05-29

            <tbody id='D1ehm'></tbody>
        • <small id='D1ehm'></small><noframes id='D1ehm'>

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

            <legend id='D1ehm'><style id='D1ehm'><dir id='D1ehm'><q id='D1ehm'></q></dir></style></legend>
              1. 本文介绍了java的行为不一致==的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                考虑这段代码:

                class test {
                   public static void main(String[] args) {
                      test inst_test = new test();
                      int i1 = 2000;
                      int i2 = 2000;
                      int i3 = 2;
                      int i4 = 2;
                      Integer Ithree = new Integer(2); // 1
                      Integer Ifour = new Integer(2); // 2
                      System.out.println( Ithree == Ifour );
                      inst_test.method( i3 , i4 );
                      inst_test.method( i1 , i2 );
                   }
                   public void method( Integer i , Integer eye ) {
                      System.out.println(i == eye );
                   }
                }
                

                打印出来:

                false
                true
                false
                

                我理解第一个 false,== 运算符只检查两个引用是否在同一个对象上工作,在这种情况下不是.

                I understand the first false, the == operator only checks if two references are working on the same object, which in this case aren't.

                下面的 truefalse 让我摸不着头脑.为什么 Java 会认为 i3i4 相等但 i1i2 不同?两者都被包装成整数,不应该 both 评估为假吗?这种不一致是否有实际原因?

                The following true and false have me scratching my head. Why would Java consider i3 and i4 equal but i1 and i2 different? Both have been wrapped to Integer, shouldn't both evaluate to false? Is there a practical reason for this inconsistency?

                推荐答案

                将基元自动装箱到对象中(在您对 method 的调用中使用的方法是使用小值缓存.来自 Java 语言规范第 5.1.7 节:

                Autoboxing of primitives into objects (as used in your calls to method uses a cache of small values. From the Java Language Specification section 5.1.7:

                如果被装箱的值p为真,false,一个字节,一个字符在范围内u0000 到 u007f,或者一个 int 或 short介于 -128 和 127 之间的数字,然后让r1 和 r2 是任意两个的结果p的拳击转换.它总是r1 == r2 的情况.

                If the value p being boxed is true, false, a byte, a char in the range u0000 to u007f, or an int or short number between -128 and 127, then let r1 and r2 be the results of any two boxing conversions of p. It is always the case that r1 == r2.

                紧随其后的规范讨论部分也很有趣.值得注意的是,如果 JVM 愿意,它可以缓存 更多 值 - 你不能确定这样做的结果:

                The discussion part of the spec immediately following that is interesting too. Notably a JVM can cache more values if it wants to - you can't be sure of the results of doing:

                Integer i1 = 129;
                Integer i2 = 129;
                boolean b = (i1 == i2);
                

                这篇关于java的行为不一致==的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:为什么 Java 能够将 0xff000000 存储为 int? 下一篇:如何在给定范围内创建一个随机打乱数字的 int 数组

                相关文章

                • <bdo id='KKBIW'></bdo><ul id='KKBIW'></ul>

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

                  <small id='KKBIW'></small><noframes id='KKBIW'>

                  1. <tfoot id='KKBIW'></tfoot><legend id='KKBIW'><style id='KKBIW'><dir id='KKBIW'><q id='KKBIW'></q></dir></style></legend>