繁体   English   中英

无法将“ this”指针从“ const Node”转换为“ Node&”

[英]Cannot convert 'this' pointer from 'const Node' to 'Node &'

我真的不知道为什么会出现这些错误:

  • 错误1错误C2662:'无效节点:: setInfo(const类型&)':无法将'this'指针从'const Node'转换为'Node&'
  • 错误2错误C2662:'无效节点:: setLink(节点*)':无法转换
    从'const Node'到'Node&'的'this'指针

这是我正在做的程序。

头文件:

#pragma once

#include <iostream>

using namespace std;

template <class Type>
class Node
{
private:
    Type info;
    Node<Type> *link;
public:
    // Constructors
    Node();
    Node(const Type& elem, Node<Type> *ptr);
    Node(const Node<Type> &otherNode);

    // Destructor
    ~Node();

    // Mutators and Accessors (getters and setters)
    void setInfo(const Type& elem);
    Type getInfo() const;

    void setLink(Node<Type> *ptr);
    Node<Type> * getLink() const;

    // Overload the assignment operator
    const Node<Type> & operator=(const Node<Type>&);
};

template <class Type> Node<Type>::Node()
{
    link = NULL;
}

template <class Type> Node<Type>::Node(const Type& elem, Node<Type> *ptr)
{
    info = elem;
    link = ptr;
}

template <class Type> Node<Type>::Node(const Node<Type> &otherNode)
{
    otherNode.setInfo(info); //ERROR 1
    otherNode.setLink(link); // ERROR 2
}

template <class Type> Node<Type>::~Node()
{
    // fill in this
}

template <class Type> void Node<Type>::setInfo(const Type& elem) 
{
    info = elem;
}

template <class Type> Type Node<Type>::getInfo() const
{
    return info;
}

template <class Type> void Node<Type>::setLink(Node<Type> *ptr) 
{
    link = ptr;
}

template <class Type> Node<Type> * Node<Type>::getLink() const
{
    return link;
}


template <class Type> const Node<Type> & Node<Type>::operator=(const Node<Type>& n)
{
    info = n.info;
    link = n.link;
}

主文件:

include "Node.h"
#include <string>
#include <iostream>
using namespace std;

int main()
{
    Node<string> *node1 = new Node<string>();
    node1->setInfo("Hello");
    Node<string> *node2 = new Node<string>("Hello World!", node1);
    Node<string> *node3 = new Node<string>(*node2);
    Node<string> *node4 = new Node<string>();
    node4->setInfo("Foo Bar");
    node4->setLink(node3);

    cout << node3->getLink()->getInfo() << endl;  // should return "hello world"

    system("pause");

    return 0;
}

问题是您正在尝试修改常量对象。 您的构造函数声明为

template <class Type> Node<Type>::Node(const Node<Type> &otherNode)

const表示您不能修改otherNode对象。 您只能在otherNode上调用标记为const 在您的体内,您尝试修改otherNode对象:

otherNode.setInfo(info); //ERROR 1
otherNode.setLink(link); // ERROR 2

在这种情况下,我相信正确地将otherNode声明为const可以使您免于其他问题的otherNode 看来您的复制构造函数实际上是在将“新”节点复制到源节点,而不是相反。

抓紧我以前的答案,因为它很遥远。
我有一个编译器,我看到发生了什么事。

在复制构造函数中,您要传入const引用,然后尝试修改该const引用。

相反,它应该看起来像

template <class Type> Node<Type>::Node(const Node<Type> &otherNode)
{
    this->setInfo(otherNode.info); 
    this->setLink(otherNode.link);
}

还有一个问题。 您的赋值运算符不会返回Node引用。 它不返回任何东西。 因此,如果调用了复制分配,则程序将调用未定义的行为。

template <class Type> const Node<Type> & Node<Type>::operator=(const Node<Type>& n)
{
    info = n.info;
    link = n.link;
    // so what happened to the return value?
    // return *this; // You're missing this.
}

但是,如果这是您的赋值运算符,那么为什么要有一个? 您要做的只是编译器生成的版本将要做的事情,那就是对所有成员进行浅表复制。

暂无
暂无

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

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