java Integer類的緩衝

來源:互聯網
上載者:User

標籤:條件   short   val   option   auto   gen   它的   port   儲存   

 首先看一段代碼(使用JDK 5),如下:

[html] view plain copy 
  1. public class Hello   
  2. {   
  3.   public static void main(String[] args)   
  4.   {   
  5.     int a = 1000, b = 1000;   
  6.     System.out.println(a == b);   
  7.   
  8.     Integer c = 1000, d = 1000;   
  9.     System.out.println(c == d);   
  10.   
  11.     Integer e = 100, f = 100;   
  12.     System.out.println(e == f);   
  13.   }   
  14. }   

輸出結果:

[html] view plain copy 
  1. true  
  2. false  
  3. true  

The Java Language Specification, 3rd Edition 寫道:

[html] view plain copy 
  1. 為了節省記憶體,對於下列封裝對象的兩個執行個體,當它們的基本值相同時,他們總是==:  
  2.  Boolean  
  3.  Byte  
  4.  Character, \u0000 - \u007f(7f是十進位的127)  
  5.  Integer, -128 — 127  

查看jdk源碼,如下:

[java] view plain copy 
  1. /** 
  2.      * Cache to support the object identity semantics of autoboxing for values between  
  3.      * -128 and 127 (inclusive) as required by JLS. 
  4.      * 
  5.      * The cache is initialized on first usage. During VM initialization the 
  6.      * getAndRemoveCacheProperties method may be used to get and remove any system 
  7.      * properites that configure the cache size. At this time, the size of the 
  8.      * cache may be controlled by the vm option -XX:AutoBoxCacheMax=<size>. 
  9.      */  
  10.   
  11.     // value of java.lang.Integer.IntegerCache.high property (obtained during VM init)  
  12.     private static String integerCacheHighPropValue;  
  13.   
  14.     static void getAndRemoveCacheProperties() {  
  15.         if (!sun.misc.VM.isBooted()) {  
  16.             Properties props = System.getProperties();  
  17.             integerCacheHighPropValue =  
  18.                 (String)props.remove("java.lang.Integer.IntegerCache.high");  
  19.             if (integerCacheHighPropValue != null)  
  20.                 System.setProperties(props);  // remove from system props  
  21.         }  
  22.     }  
  23.   
  24.     private static class IntegerCache {  
  25.         static final int high;  
  26.         static final Integer cache[];  
  27.   
  28.         static {  
  29.             final int low = -128;  
  30.   
  31.             // high value may be configured by property  
  32.             int h = 127;  
  33.             if (integerCacheHighPropValue != null) {  
  34.                 // Use Long.decode here to avoid invoking methods that  
  35.                 // require Integer‘s autoboxing cache to be initialized  
  36.                 int i = Long.decode(integerCacheHighPropValue).intValue();  
  37.                 i = Math.max(i, 127);  
  38.                 // Maximum array size is Integer.MAX_VALUE  
  39.                 h = Math.min(i, Integer.MAX_VALUE - -low);  
  40.             }  
  41.             high = h;  
  42.   
  43.             cache = new Integer[(high - low) + 1];  
  44.             int j = low;  
  45.             for(int k = 0; k < cache.length; k++) //緩衝區間資料  
  46.                 cache[k] = new Integer(j++);  
  47.         }  
  48.   
  49.         private IntegerCache() {}  
  50.     }  
  51.   
  52.     /** 
  53.      * Returns a <tt>Integer</tt> instance representing the specified 
  54.      * <tt>int</tt> value. 
  55.      * If a new <tt>Integer</tt> instance is not required, this method 
  56.      * should generally be used in preference to the constructor 
  57.      * {@link #Integer(int)}, as this method is likely to yield 
  58.      * significantly better space and time performance by caching 
  59.      * frequently requested values. 
  60.      * 
  61.      * @param  i an <code>int</code> value. 
  62.      * @return a <tt>Integer</tt> instance representing <tt>i</tt>. 
  63.      * @since  1.5 
  64.      */  
  65.     public static Integer valueOf(int i) {  
  66.         if(i >= -128 && i <= IntegerCache.high)  
  67.             return IntegerCache.cache[i + 128];  
  68.         else  
  69.             return new Integer(i);  
  70.     }  

這兒的IntegerCache有一個靜態Integer數組,在類載入時就將-128 到 127 的Integer對象建立了,並儲存在cache數組中,一旦程式調用valueOf 方法,如果i的值是在-128 到 127 之間就直接在cache緩衝數組中去取Integer對象。

再看其它的封裝器:

 

  • Boolean:(全部緩衝)
  • Byte:(全部緩衝)
  • Character(<= 127緩衝)
  • Short(-128 — 127緩衝)
  • Long(-128 — 127緩衝)
  • Float(沒有緩衝)
  • Doulbe(沒有緩衝)

 

 

同樣對於記憶體回收行程來說:

[java] view plain copy 
  1. Integer i = 100;     
  2. i = null;//will not make any object available for GC at all.  

這裡的代碼不會有對象符合記憶體回收行程的條件,這兒的i雖然被賦予null,但它之前指向的是cache中的Integer對象,而cache沒有被賦null,所以Integer(100)這個對象還是存在。

 

而如果i大於127或小於-128則它所指向的對象將符合記憶體回收的條件:

 

[java] view plain copy 
  1. Integer i = 10000;     
  2. i = null;//will make the newly created Integer object available for GC.  

java Integer類的緩衝(轉)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.