繁体   English   中英

链表运算符重载问题

[英]linked list operator overloading issue

我试图建立自己的链表类,并且= operator overloading.遇到问题= operator overloading. 据我所知,我们应该在重载赋值运算符时使用const参数,比如使用linked_list<T>& operator=( const linked_list<T>& a) 但是,除非我放了linked_list<T>& a,否则编译器给了我错误。 编译器将停在if(this->head==a.front()) ,给我错误

11  error C2662: 'linked_list<T>::front' : cannot convert 'this' pointer from 'const linked_list<T>' to 'linked_list<T> &'

以下是详细信息。

#ifndef _LINKED_LIST_H_
#define _LINKED_LIST_H_
template <class T>
struct node
{
    T data;
    node<T>* next;
};
template <class T>
class linked_list
{
   private:
    node<T>* head;
   public:
    linked_list<T>();
    linked_list<T>(const linked_list<T>& a);
    ~linked_list<T>();
    linked_list<T>& operator=(const linked_list<T>& a);
    bool isEmpty();
    int size() const;
    void insert_front(T a);
    void insert_end(T a);
    void erase_end();
    void erase_front();
    void print() const;
    void erase(node<T>* a);
    node<T>*& front()
    {
        node<T>* ptr = new node<T>;
        ptr = head;
        return ptr;
    }
    void setFront(node<T>* a);
};
#endif
template <class T>
linked_list<T>& linked_list<T>::operator=(const linked_list<T>& a)
{
    if (this->head == a.front())  // the error mentioned happened here. however,
                                  // if no const in the parameter, it would be
                                  // no error
    {
        return *this;
    }
    while (head != nullptr) erase_front();
    node<T>* copy;
    copy = a.front();
    while (copy->next != nullptr)
    {
        insert_end(copy->data);
        copy = copy->next;
    }
    return *this;
}

有人可以帮忙吗? 谢谢。

当访问器返回对拥有的结构的引用时,通常最好实现两个版本:一个版本为非常量,返回一个非常量引用,另一个版本为const,返回一个const引用。 这样,它可以在变异和非变异上下文中使用。 front()将是一个很好的选择。

尽管有个旁注-您可能不希望在公共linked_list接口中公开您的node ,尤其是对它们的非常量引用。 那是完全封装在类中的东西。

问题在于front()不是const成员函数,并且您试图在const实例上调用它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM