On 1/5/2015 1:55 AM, Brian O'Brien wrote:
I have two collections and I want to create a third Collection that is the union of the two collecions.
//psuedo code
How do yuo pronuonce "psuedo?" :)
Collection<String> a = "1","a", "2", "b";
Collection<String> b = "3", "a, "4", "b";
Collection<String> c = a + b;
// would produce..
"1", "a" , "2", "b", "3", "4"
Is there a collection method that does this?
Or must I iterate through the one of the sets and add to the other if it does not 'contain' the object?
If you want c to contain no duplicated elements and you don't
care about their "order," use a Set:
c = new HashSet<String>(a).addAll(b);
If you want to keep the a's and/or b's in their original order
(or in any defined order), or if you want to preserve duplicate a's and
duplicate b's (while eliminating b's that duplicate a's), please
describe in more detail what you're trying to accomplish.
Order in not important, what is important is that the Collection NOT contain any duplicates and remains a Collection.