Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
tempList.addAll(itemList) – dhblah Sep 24 '11 at 6:08
1  
I assume that you don't mean "physical" literally :-) – Stephen C Feb 18 at 9:44

2 Answers

up vote 7 down vote accepted

Another way to do this is to use the copy constructor:

Collection<E> oldSet = ...
TreeSet<E> newSet = new TreeSet<E>(oldSet);

Or create an empty set and add the elements:

Collection<E> oldSet = ...
TreeSet<E> newSet = new TreeSet<E>();
newSet.addAll(oldSet);

Unlike clone these allow you to use a different set class, a different comparator, or even populate from some other (non-set) collection type.

share|improve this answer
+1: This approach loops for you. ;) – Peter Lawrey Sep 24 '11 at 6:35
Indeed, all approaches involve a loop at some level. – Stephen C Feb 18 at 9:43

For Completion, use tempList = itemList.clone();.


Class Set implements Clonable

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.