我正试图用c++为链表类编写一个赋值运算符。我收到的错误说"head"是未声明的,但我不确定应该在哪里声明。它被用于其他函数,没有问题。另一个错误是,我对"this"的使用是无效的。
template <class T>
SortedLinkList<T>& operator=(const SortedLinkList<T> & otherList)
{
if(&otherList != this) {
Node<T> temp = head;
while(temp->getNext() != NULL) {
head = head -> getNext();
delete temp;
temp = head;
}
count = 0;
temp = otherList.head;
while(temp != NULL) {
insert(temp);
}
}
return *this;
}
this
指针不可用,因为您的函数签名与成员定义不相似,您缺少签名的类型范围解析部分:
template <class T>
SortedLinkList<T>& operator=(const SortedLinkList<T> & otherList)
应该是:
template <class T>
SortedLinkList<T>& SortedLinkList<T>::operator=(const SortedLinkList<T> & otherList)