Generate a duplicate of a list.
import
ArrayList
|
The clone() method retrieves a duplicate of the ArrayList as an Object.
This operation produces a “shallow” copy, implying that individual objects within the list are not duplicated; rather, the list contains references to the same objects as the original.
Please be aware that due to the return type being Object, it needs to be type casted to an ArrayList for usage, as demonstrated in the example provided above.
public |
Returns: |
A duplication of the ArrayList object. |