gpt4 book ai didi

c++ - 在我的类 .cpp 文件 : "error: class ' Test' does not have any field named 'counter' "中类头和使用构造函数

转载 作者:太空宇宙 更新时间:2023-11-04 14:50:18 27 4
gpt4 key购买 nike

我遇到了一个问题,我的类中的一个字段不能被它的 .cpp 文件中的构造函数访问,由于我不知道的原因,.cpp 没有继承它,我不能构造它用于我程序的其余部分
这是包含我希望在 Test.h 中构造的字段的类

class Test
{
public:
Test();
virtual ~Test();
void count();
int counter();
};

这是 Test.cpp 中字段“counter”的构造函数

Test::Test() : counter(0){}

据我对 C++ 的了解,这应该是正确的,因为 Test.cpp 包含 #include "Test.h"并且在仅使用 main.cpp 且不使用 header 时编写和构造类时完全相同的代码可以工作,有什么想法吗?

最佳答案

int counter(); 是一个函数声明。删除 ()

关于c++ - 在我的类 .cpp 文件 : "error: class ' Test' does not have any field named 'counter' "中类头和使用构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11741523/

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