gpt4 book ai didi

c++ - 如何修复类中的类型限定符错误?

转载 作者:太空宇宙 更新时间:2023-11-04 11:52:34 25 4
gpt4 key购买 nike

这是我的 main.cpp 代码。输入是3个字符串,输出打印出传递给它的3个String对象的值和长度

void Display(const String &str1, const String &str2, const String &str3)
{
cout << "str1 holds \"";
str1.print(); // the error is here about the str1
cout.flush();
cout << "\" (length = " << str1.length() << ")" << endl;

cout << "str2 holds \"";
str2.print();
cout.flush();
cout << "\" (length = " << str2.length() << ")" << endl;

cout << "str3 holds \"";
str3.print();
cout.flush();
cout << "\" (length = " << str3.length() << ")" << endl;
}

这是错误:

错误 C2662:“String::print”:无法将“this”指针从“const String”转换为“String &”

这是在我的实现文件中:我在这里做错了吗?

void String::print()
{
cout << m_pName << ": ";
cout << (int)m_str1 << ", ";
cout << (int)m_str2 << ", ";
cout << (int)m_str3 << endl;
}

最佳答案

str1 是对 const String 的引用。

简单来说,编译器希望确保 str1.print() 不会修改 str1

因此,它寻找不存在的 print 方法的 const 重载。

使print方法const:

class String
{
...

void print() const;
^^^^^^
...
};


void String::print() const
{ ^^^^^
...
}

关于c++ - 如何修复类中的类型限定符错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17506526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com