少年阿賓

          那些青春的歲月

            BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
            500 Posts :: 0 Stories :: 135 Comments :: 0 Trackbacks

           StackOverflow上面給出的解釋是:

          The reason for the HotSpot JVM's two survivor spaces is to reduce the need to deal with fragmentation. New objects are allocated in eden space. All well and good. When that's full, you need a GC, so kill stale objects and move live ones to a survivor space, where they can mature for a while before being promoted to the old generation. Still good so far. The next time we run out of eden space, though, we have a conundrum. The next GC comes along and clears out some space in both eden and our survivor space, but the spaces aren't contiguous. So is it better to

          1. Try to fit the survivors from eden into the holes in the survivor space that were cleared by the GC?
          2. Shift all the objects in the survivor space down to eliminate the fragmentation, and then move the survivors into it?
          3. Just say "screw it, we're moving everything around anyway," and copy all of the survivors from both spaces into a completely separate space--the second survivor space--thus leaving you with a clean eden and survivor space where you can repeat the sequence on the next GC?

          Sun's answer to the question is obvious.


            對于如何達到“無碎片”的目的,理解上可能有些困難,下面我把新生代回收機制詳細解釋一下:

            注意,兩個survivor是交替使用的,在任意一個時刻,必定有一個survivor為空,一個survivor中存放著對象(連續存放,無碎片)?;厥者^程如下:

            S1、GC,將eden中的live對象放入當前不為空的survivor中,將eden中的非live對象回收。如果survivor滿了,下次回收執行S2;如果survivor未滿,下次回收仍然以S1的方式回收;

            S2、GC,將eden和存放著對象的survivor中的live對象放入當前為空的survivor中,將非live對象回收。

            可以看到,上述的新生代回收機制保證了一個survivor為空,另一個非空survivor中無碎片。

            在執行一定次數的minor GC后,會通過Full GC將新生代的survivor中的對象移入老年代。


            對于理解GC的整個機制,推薦一篇非常好的文章http://www.cubrid.org/blog/dev-platform/understanding-java-garbage-collection/

          posted on 2014-12-09 14:16 abin 閱讀(1021) 評論(0)  編輯  收藏 所屬分類: JVM
          主站蜘蛛池模板: 合阳县| 重庆市| 衡水市| 霍邱县| 简阳市| 遂平县| 庆阳市| 寿光市| 青海省| 孟州市| 霍州市| 望江县| 潜江市| 教育| 张北县| 高淳县| 泰安市| 新昌县| 乌拉特后旗| 福贡县| 武胜县| 沅江市| 禹城市| 东丰县| 治多县| 宜兰市| 德江县| 商丘市| 吉木萨尔县| 时尚| 梅州市| 上饶市| 和平区| 武穴市| 湘乡市| 祥云县| 定襄县| 旌德县| 宁乡县| 仁布县| 察雅县|