I have an ArrayList<String> that I'd like to return a copy of. ArrayList has a clone method has the following signature:
public Object clone()
After I call this method, how do I cast the returned Object back to ArrayList<String>?
|
|
|||||||||||||||||
|
|
Why would you want to clone? Creating a new list usually makes more sense.
Job done. |
|||||||||||||||||||||
|
|
Be advised that Object.clone() has some major problems, and its use is discouraged in most cases. Please see Item 11, from "Effective Java" by Joshua Bloch for a complete answer. I believe you can safely use Object.clone() on primitive type arrays, but apart from that you need to be judicious about properly using and overriding clone. You are probably better off defining a copy constructor or a static factory method that explicitly clones the object according to your semantics. |
|||
|
|
|
I think this should do the trick using the Collections API: Note: the copy method runs in linear time.
|
|||||||||
|
|
I find using addAll works fine.
parentheses are used rather than the generics syntax |
|||||||||||||||
|
|
This is the code I use for that:
Hope is usefull for you |
|||
|
|
|
I think this should work:
|
|||||||||||
|
|
|||
|
|
|
just create a new one: |
|||||
|
|
Be very careful when cloning ArrayLists. Cloning in java is shallow. This means that it will only clone the Arraylist itself and not its members. So if you have an ArrayList X1 and clone it into X2 any change in X2 will also manifest in X1 and vice-versa. When you clone you will only generate a new ArrayList with pointers to the same elements in the original. |
|||
|
|
|
I am not a java professional, but I have the same problem and I tried to solve by this method. (It suppose that T has a copy constructor).
|
||||
|
|
|
My function to clone a List with type:
|
|||
|
|