这是我的代码
#include <iostream>
using namespace std;
class MyTestClass
{
int MyTestIVar;
public:
MyTestClass(void);
int firstCallMethod(void);
int secondCallMethod(void);
};
MyTestClass::MyTestClass(void)
{
MyTestIVar = 4;
}
int MyTestClass::firstCallMethod(void)
{
return secondCallMethod();
}
int MyTestClass::secondCallMethod(void)
{
return MyTestIVar;
}
int main(int argc, char *argv[])
{
MyTestClass mTC;
cout << mTC.firstCallMethod() << endl;
return 0;
}
如果使用
MyTestClass mTC();
相反,它将禁止我调用任何成员函数并显示此错误
./ experiment.cpp:在函数'int main(int,char **)'中: ./experiment.cpp:31:14:错误:请求成员'firstCallMethod'中 'mTC',属于非类型'MyTestClass()'
我阅读了有关value-initialize等的帖子,但这个错误对我来说似乎不合逻辑。为什么这会影响成员函数?
非常感谢: - )
答案 0 :(得分:5)
MyTestClass mTC();
不要像你想的那样声明MyTestClass
类的对象。
实际上,通过名称mTC
声明一个函数,该函数不接受任何参数并返回MyTestClass
个对象。
这在c ++中被称为 Most Vexing Parse 。
答案 1 :(得分:3)