Is there a way to copy a treeset? That is, is it possible to go
Set <Item> itemList
Set <Item> tempList
tempList = itemList
or do you have to physically iterate through the sets and copy them one by one?
|
Another way to do this is to use the copy constructor:
Or create an empty set and add the elements:
Unlike |
|||||
|
|
tempList.addAll(itemList)– dhblah Sep 24 '11 at 6:08