少年阿賓

          那些青春的歲月

            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 閱讀(1025) 評論(0)  編輯  收藏 所屬分類: JVM
          主站蜘蛛池模板: 礼泉县| 孟村| 扶余县| 正阳县| 岳西县| 尉犁县| 苏州市| 红安县| 长治市| 林芝县| 道真| 南投市| 阳原县| 康保县| 茌平县| 广南县| 建昌县| 海口市| 攀枝花市| 垣曲县| 林周县| 石嘴山市| 乐山市| 黄陵县| 连江县| 中阳县| 巴东县| 洪泽县| 周至县| 阜宁县| 额敏县| 格尔木市| 阿图什市| 额尔古纳市| 岳普湖县| 昭觉县| 周宁县| 神木县| 洛南县| 金沙县| 平罗县|