久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <tfoot id='EDroR'></tfoot>
    <legend id='EDroR'><style id='EDroR'><dir id='EDroR'><q id='EDroR'></q></dir></style></legend>

        <bdo id='EDroR'></bdo><ul id='EDroR'></ul>

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

    1. <i id='EDroR'><tr id='EDroR'><dt id='EDroR'><q id='EDroR'><span id='EDroR'><b id='EDroR'><form id='EDroR'><ins id='EDroR'></ins><ul id='EDroR'></ul><sub id='EDroR'></sub></form><legend id='EDroR'></legend><bdo id='EDroR'><pre id='EDroR'><center id='EDroR'></center></pre></bdo></b><th id='EDroR'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='EDroR'><tfoot id='EDroR'></tfoot><dl id='EDroR'><fieldset id='EDroR'></fieldset></dl></div>

        new Integer(123)、Integer.valueOf(123) 和 just 123 之間的區

        Differences between new Integer(123), Integer.valueOf(123) and just 123(new Integer(123)、Integer.valueOf(123) 和 just 123 之間的區別)
          <i id='jZ0tW'><tr id='jZ0tW'><dt id='jZ0tW'><q id='jZ0tW'><span id='jZ0tW'><b id='jZ0tW'><form id='jZ0tW'><ins id='jZ0tW'></ins><ul id='jZ0tW'></ul><sub id='jZ0tW'></sub></form><legend id='jZ0tW'></legend><bdo id='jZ0tW'><pre id='jZ0tW'><center id='jZ0tW'></center></pre></bdo></b><th id='jZ0tW'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='jZ0tW'><tfoot id='jZ0tW'></tfoot><dl id='jZ0tW'><fieldset id='jZ0tW'></fieldset></dl></div>

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

            <legend id='jZ0tW'><style id='jZ0tW'><dir id='jZ0tW'><q id='jZ0tW'></q></dir></style></legend>
          • <tfoot id='jZ0tW'></tfoot>

              <bdo id='jZ0tW'></bdo><ul id='jZ0tW'></ul>
                <tbody id='jZ0tW'></tbody>
                  本文介紹了new Integer(123)、Integer.valueOf(123) 和 just 123 之間的區別的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  最近我看到這樣的代碼(Java):

                  Recenlty I saw code (Java) like this:

                  myMethod(new Integer(123));
                  

                  我目前正在重構一些代碼,Sonar 工具中有一個提示,使用這樣的東西對內存更友好:

                  I am currently refactoring some code, and there is a tip in Sonar tool, that it's more memory friendly to use sth like this:

                  myMethod(Integer.valueOf(123));
                  

                  但是在這種情況下,我認為如果我會使用沒有區別:

                  However in this case, I think that there is no difference if I would use:

                  myMethod(123);
                  

                  我可以理解,如果我將變量傳遞給方法,但硬編碼 int?或者如果會有 Long/Double 等,我想要 Long 表示數字.但是整數?

                  I could understand that, if I would pass a variable to the method, but hard coded int? Or if there would be Long/Double etc and I want Long representation of number. But integer?

                  推薦答案

                  new Integer(123) 將為每個調用創建一個新的 Object 實例.

                  new Integer(123) will create a new Object instance for each call.

                  根據 javadoc, Integer.valueOf(123) 不同之處在于它緩存對象......所以如果你調用它更多,你可能(或可能不會)最終得到相同的 Object不止一次.

                  According to the javadoc, Integer.valueOf(123) has the difference it caches Objects... so you may (or may not) end up with the same Object if you call it more than once.

                  比如下面的代碼:

                     public static void main(String[] args) {
                  
                          Integer a = new Integer(1);
                          Integer b = new Integer(1);
                  
                          System.out.println("a==b? " + (a==b));
                  
                          Integer c = Integer.valueOf(1);
                          Integer d = Integer.valueOf(1);
                  
                          System.out.println("c==d? " + (c==d));
                  
                      }
                  

                  有以下輸出:

                  a==b? false
                  c==d? true
                  

                  至于使用 int 值,您使用的是原始類型(考慮到您的方法也在其簽名上使用原始類型) - 它會使用更少的內存并且可能更快,但是您例如,不能將其添加到收藏中.

                  As to using the int value, you are using the primitive type (considering your method also uses the primitive type on its signature) - it will use slightly less memory and might be faster, but you won't be ale to add it to collections, for instance.

                  如果您的方法的簽名,還請查看 Java 的 AutoBoxing使用 Integer - 使用時,JVM 會自動為您調用 Integer.valueOf()(因此也使用緩存).

                  Also take a look at Java's AutoBoxing if your method's signature uses Integer- when using it, the JVM will automatically call Integer.valueOf() for you (therefore using the cache aswell).

                  這篇關于new Integer(123)、Integer.valueOf(123) 和 just 123 之間的區別的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How can I detect integer overflow on 32 bits int?(如何檢測 32 位 int 上的整數溢出?)
                  Local variables before return statements, does it matter?(return 語句之前的局部變量,這有關系嗎?)
                  How to convert Integer to int?(如何將整數轉換為整數?)
                  How do I create an int array with randomly shuffled numbers in a given range(如何在給定范圍內創建一個隨機打亂數字的 int 數組)
                  Inconsistent behavior on java#39;s ==(java的行為不一致==)
                  Why is Java able to store 0xff000000 as an int?(為什么 Java 能夠將 0xff000000 存儲為 int?)

                          <small id='5HEg4'></small><noframes id='5HEg4'>

                            <tbody id='5HEg4'></tbody>
                            <bdo id='5HEg4'></bdo><ul id='5HEg4'></ul>
                            <tfoot id='5HEg4'></tfoot>

                            <i id='5HEg4'><tr id='5HEg4'><dt id='5HEg4'><q id='5HEg4'><span id='5HEg4'><b id='5HEg4'><form id='5HEg4'><ins id='5HEg4'></ins><ul id='5HEg4'></ul><sub id='5HEg4'></sub></form><legend id='5HEg4'></legend><bdo id='5HEg4'><pre id='5HEg4'><center id='5HEg4'></center></pre></bdo></b><th id='5HEg4'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5HEg4'><tfoot id='5HEg4'></tfoot><dl id='5HEg4'><fieldset id='5HEg4'></fieldset></dl></div>
                          • <legend id='5HEg4'><style id='5HEg4'><dir id='5HEg4'><q id='5HEg4'></q></dir></style></legend>

                            主站蜘蛛池模板: 国产精品久久久久久久模特 | 国产伦精品一区二区三区精品视频 | 精品欧美一区二区三区久久久小说 | 四虎影视免费在线 | 国产成人久久av免费高清密臂 | 黄色精品视频网站 | 亚洲综合大片69999 | 99精品网| 国产精品一区二区不卡 | 亚洲国产精品视频 | 国产精品黄色 | 日韩高清电影 | 人人做人人澡人人爽欧美 | 欧美成年人网站 | 一区二区三区欧美在线 | 欧美日韩综合一区 | av电影手机版 | 欧美日韩黄 | 久久久.com| 视频一区欧美 | 国产精品久久久久久网站 | 一区二区三区国产精品 | 国产精品一区二区不卡 | 国产在线色 | 日韩有码一区 | 91夜色在线观看 | 国产操操操 | 伊人精品在线视频 | 精品二区视频 | 日韩一区二区三区精品 | 亚洲三区在线观看 | 综合色影院 | 狠狠操狠狠色 | 欧美日韩久久 | 欧美freesex黑人又粗又大 | 日韩免费1区二区电影 | 久久免费精品 | 成人h视频在线 | 狠狠狠干 | 中文字幕一区二区三区在线观看 | 精品欧美在线观看 |