Operator +=
Bag operator +=(const Bag& addend)
Pre: size() + addend.size() <= CAPACITY
Post: Each item in addend has been added to this bag.
Danger! The argument Bag may be the same as the bag that activates +=
See Figure 3.6 for incorrect implementation.