gpt4 book ai didi

c++ - 为什么我不能把这个成员函数标记为const?

转载 作者:行者123 更新时间:2023-11-27 23:01:27 25 4
gpt4 key购买 nike

当我尝试编译这个短程序时:

#include <iostream>

class Foo {

public:
friend int getX() const;

private:
int x;
};

int Foo::getX() const { return this->x; }

int main() {
Foo foo;
std::cout << foo.getX() << std::endl;
}

我收到这些错误:

C:\>gcc test.cpp
test.cpp:6:23: error: non-member function 'int getX()' cannot have cv-qualifier
friend int getX() const;
^
test.cpp:12:17: error: no 'int Foo::getX() const' member function declared in cl
ass 'Foo'
int Foo::getX() const { return this->x; }
^
test.cpp: In function 'int main()':
test.cpp:16:22: error: 'class Foo' has no member named 'getX'
std::cout << foo.getX() << std::endl;
^

为什么我不能在这里将 getX() 标记为 const?它不会修改 Foo 的状态或任何内容,所以我应该能够这样做。

最佳答案

您正在声明一个同时带有 friendconst 的函数。将两者放在一起没有意义:friend成员 函数没有意义,因为成员函数已经可以访问类的私有(private)对象。 const 对于成员函数没有意义,因为没有它们 promise 不修改的固有对象。

关于c++ - 为什么我不能把这个成员函数标记为const?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27210102/

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