DeepCopy (Arraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 1: Line 1:
{{Template:Arraylist:DeepCopy subtitle}}
{{Template:Arraylist:DeepCopy subtitle}}
[[Category:Arraylist methods|DeepCopy function]]
<!--DPL?? Category:<var>Arraylist</var> methods|<var>DeepCopy</var> function: Deep Copy the <var>Arraylist</var>-->
<p>
<p>
<var>DeepCopy</var> is a member of the [[Arraylist class]].
<var>DeepCopy</var> is a member of the [[Arraylist class]].
Line 21: Line 19:
<td>An <var>Arraylist</var> object.</td></tr>
<td>An <var>Arraylist</var> object.</td></tr>
</table>
</table>
==See also==
{{Template:Arraylist:DeepCopy footer}}

Revision as of 11:45, 27 January 2011

Deep Copy the Arraylist (Arraylist class)

DeepCopy is a member of the Arraylist class.

This function 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.

For more information about copyability, see Copying objects.

Syntax

%copyList = al:DeepCopy

Syntax terms

%dcop An Arraylist to contain the deep copy of al.
al An Arraylist object.

See also