<div dir="ltr">Thanks Thomas. I think it is as same as C++'s shallow copy.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Aug 26, 2013 at 4:46 PM, Thomas Schatzl <span dir="ltr"><<a href="mailto:thomas.schatzl@oracle.com" target="_blank">thomas.schatzl@oracle.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Xu,<br>
<div class="im"><br>
On Mon, 2013-08-26 at 16:20 +0800, Lijie Xu wrote:<br>
> Hi, folks. I’m confused with the concrete locations of the data<br>
> structure and its inner objects in the heap. The questions are below.<br>
><br>
> A general question:<br>
><br>
> If an object X is decided to be copied into old from new gen by GC,<br>
> all the objects which can be reached from X are copied into old too.<br>
> Or X’s retained set. Or this statement is wrong.<br>
><br>
<br>
</div>The Hotspot GCs only guarantee that a single object is in a particular<br>
generation. An object graph may span multiple generations.<br>
<div class="im"><br>
> Two concrete questions.<br>
><br>
>Q1: Can an array such as byte[], String[] and Object[] span two<br>
>generations?<br>
<br>
</div>No, the array itself is a single object, so it cannot span multiple<br>
generations.<br>
<div class="im">><br>
> I think primitive arrays such as byte[] and int[] cannot span (e.g., a<br>
> part of the array exists in eden and the other part exists in old<br>
> space). For reference arrays such as Object[], the array itself cannot<br>
> span but the items in the arrays can span (i.e., some items exist in<br>
> new gen while others exist in old gen). I’m not sure if I’m right and<br>
> if String[] is as same as byte[].<br>
<br>
</div>String[] is the same as an Object[].<br>
<div class="im">><br>
> Q2: Can ArrayList, LinkedList, HashMap span two generations?<br>
><br>
<br>
</div>The separate objects cannot, the data structure with all its contents<br>
may span multiple generations.<br>
<br>
I.e. an ArrayList consists of (don't nail me on that) the ArrayList<br>
object itself, the object array object, and the referenced objects.<br>
<br>
So the ArrayList, the object array, and the referenced objects each will<br>
not span generations. However the parts themselves may be located in<br>
different generations.<br>
<br>
Hth,<br>
  Thomas<br>
<br>
<br>
<br>
</blockquote></div><br></div>