Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems that those two are exactly same, any confirms?

share|improve this question
Yep, they're the same. – tzaman Jan 15 '12 at 0:06

1 Answer

up vote 11 down vote accepted

Primarily this: Multiset follows the Collection contract precisely, and generally plays better with other JDK collections utilities. Additionally, Multiset has generics support, supports the entrySet() method, and the setCount method, none of which appear to be offered by Bag.

They serve the same purpose, as you can clearly tell, but I'd like to think that Multiset wins in most respects.

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.