DeepCopy (Arraylist function): Difference between revisions
Jump to navigation
Jump to search
m (tags) |
m (and the converse it) |
||
Line 1: | Line 1: | ||
{{Template:Arraylist:DeepCopy subtitle}} | {{Template:Arraylist:DeepCopy subtitle}} | ||
<var>DeepCopy</var> makes a "deep copy" of the <var>Arraylist</var> method object, <var class="term">al</var>. If <var class="term">al</var> contains objects, they <b><i>are</i></b> copied. If <var class="term">al</var> is Null, a Null is returned. | <var>DeepCopy</var> makes a "deep copy" of the <var>Arraylist</var> method object, <var class="term">al</var>. If <var class="term">al</var> contains objects, they <b><i>are</i></b> copied. If <var class="term">al</var> is Null, a Null is returned. | ||
Line 14: | Line 13: | ||
==See also== | ==See also== | ||
<ul><li>For more information about copyability, see [[Copying objects|"Copying objects"]].</ul> | <ul><li>Contrast with <var>[[Copy_(Arraylist_function)|Copy]]</var> which <b><i>does not</i></b> copy any nested objects. | ||
<li>For more information about copyability, see [[Copying objects|"Copying objects"]].</ul> | |||
{{Template:Arraylist:DeepCopy footer}} | {{Template:Arraylist:DeepCopy footer}} |
Revision as of 06:43, 11 March 2011
Deep Copy the Arraylist (Arraylist class)
DeepCopy makes a "deep copy" of the Arraylist method object, al. If al contains objects, they are copied. If al is Null, a Null is returned.
Syntax
%copyList = al:DeepCopy
Syntax terms
%copyList | An Arraylist to contain the deep copy of al. |
---|---|
al | An Arraylist object. |
See also
- Contrast with Copy which does not copy any nested objects.
- For more information about copyability, see "Copying objects".