最佳答案
我如何克隆一个ArrayList
,也克隆它的项目在Java?
例如,我有:
ArrayList<Dog> dogs = getDogs();
ArrayList<Dog> clonedList = ....something to do with dogs....
我希望clonedList
中的对象与dogs list中的对象不相同。