What is a "bag" in Java? I tried to find out from Google but I could not find a precise answer. I got idea from what I found on google that bags are similar to multisets. I want to know whether I am right or wrong because I didnt get proper answer through searching on google.
What is meant by the term "bag"?
804 Views Asked by Alok At
2
There are 2 best solutions below
0

Core java contains no Bag class though the Collections interface does have this to say:
Bags or multisets (unordered collections that may contain duplicate elements) should implement this interface directly. (http://docs.oracle.com/javase/6/docs/api/java/util/Collection.html)
Other libraries such as Apache Commons Collections may contain implementations named Bag and Guava has Multisets.
Bag: Collection without order, may contain duplicates. The same as multiset:
from Wikipedia.
Note that duplicate is based on the
equals(
method in most JRE libraries.