gpt4 book ai didi

c++ - 错误 : qualifiers dropped in binding reference of type string to initializer of type const string

转载 作者:太空宇宙 更新时间:2023-11-04 12:42:07 26 4
gpt4 key购买 nike

标题

class Player {
protected:
int age;
string name;

public:
int getAge();
string& getName() const;

定义

string& Player::getName() const
{
return name;
}

使用 getName() 函数时出现以下错误:

error: qualifiers dropped in binding reference of type string to initializer of type const string

我该如何修复它并使其正常工作?

最佳答案

为了使其作为const 可执行,返回类型需要是const&

const string& Player::getName() const
{
return name;
}

关于c++ - 错误 : qualifiers dropped in binding reference of type string to initializer of type const string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53733707/

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