Something peculiar happened when I was overloading operator+
I have a singly-linked list, and I overloaded the operator+ and operator=
Here's my implementation for both (edit: with insertFront and copy constructor):
AnyList::AnyList(const AnyList& list)
{
count = list.getCount();
first = list.getFirst();
AnyList a;
a.setFirst(first);
a.setCount(count);
Node *current = first;
for (int i = 0; i < count; ++i)
{
a.insertFront(current->getData());
current = current ->getLink();
}
}
-
void AnyList::insertFront(int value)
{
Node *newNode = new Node;
newNode -> setData(value);
newNode -> setLink(first);
first = newNode;
++count;
}
AnyList AnyList::operator+ (const AnyList& list) const
{
Node *current = first;
Node *listCurrent = list.getFirst();
int sumHolder = 0;
AnyList temp;
while(current != NULL)
{
sumHolder = current ->getData() + listCurrent ->getData();
temp.insertFront(sumHolder);
current = current ->getLink();
listCurrent = listCurrent ->getLink();
}
return temp;
}
AnyList& AnyList::operator=(const AnyList& rightSide)
{
if(&rightSide != this)
{
Node *travel = rightSide.getFirst();
first = rightSide.getFirst();
Node *original = first;
while (travel != NULL)
{
original ->setData(travel ->getData());
original ->setLink(travel ->getLink());
travel = travel->getLink();
original = original ->getLink();
}
}
return *this;
}
Here is what is in main:
AnyList mylist;
AnyList mylist2;
for (int i = 0; i < 10; ++i)
{
mylist.insertFront(i);
}
for (int i = 10; i < 20; ++i)
{
mylist2.insertFront(i);
}
mylist.print();
cout << endl << endl;
mylist2.print();
cout << endl;
AnyList sumList = mylist + mylist2;
sumList.print();
cout << endl;
My output is as follows (which is the output I desired):
9 8 7 6 5 4 3 2 1 0
19 18 17 16 15 14 13 12 11 10
10 12 14 16 18 20 22 24 26 28
So, my question is, when I instead write:
AnyList sumList;
sumList = mylist + mylist2;
sumList.print();
I get a bad-access error when it goes into the print function and attempts to return the data from the function getData()
I'm super unaware of why this is the case, any help would be greatly appreciated!
Thanks!

insertFront(). Do you have a copy constructor??? – UmNyobe Jan 29 at 17:04operator=- it uses the copy constructor. – sftrabbit Jan 29 at 17:09