I'm currently working on an assignment (so I'd rather no post the full code) trying to implement a Bag abstract data type.
Below is a method which I am currently trying to implement:
template <typename T>
Bag<T> Bag<T>::operator+ (const Bag<T>& bag) {
int sizeofCurrentMultiset = cardinality_;
int sizeofPassedMultiset = bag.cardinality_;
int totalSize = sizeofCurrentMultiset + sizeofPassedMultiset;
Bag<T> newBag(totalSize);
for (int i = 0; i < sizeofCurrentMultiset; i++) {
newBag.insert(array_[i]);
}
for (int i = 0; i < sizeofPassedMultiset; i++) {
newBag.insert(bag.array_[i]);
}
return newBag;
}
I'm storing the elements as a dynamic array.
My problem is that when the new bag is returned, I can print the cardinality fine (prints to 4, the original bags had two elements each), but the dynamic array doesn't contain the numbers (it prints out some random numbers such as -1789102). However when I try print out the elements before the bag is returned, it prints out fine.
No doubt it will be something trivial, but I'd appreciate the help.
Thanks.
insertmethod, or perhaps in your copy constructor ifinsertuses copy semantics. – Chris Parton Dec 8 '11 at 11:55Bag? Sounds like you might be getting the default copy constructor. – Steve O'Connor Dec 8 '11 at 11:57Bag<T>. It will be invoked whenoperator+()returns and is the most likely cause as all is fine before function returns. – hmjd Dec 8 '11 at 11:58