我有一个带有两个构造函数的类,一个不带参数,而一个带一个参数。
使用接受一个参数的构造函数创建对象的工作符合预期。但是,如果我使用不带参数的构造函数创建对象,则会出现错误。
例如,如果我编译此代码(使用g ++ 4.0.1)...
class Foo
{
public:
Foo() {};
Foo(int a) {};
void bar() {};
};
int main()
{
// this works...
Foo foo1(1);
foo1.bar();
// this does not...
Foo foo2();
foo2.bar();
return 0;
}
...我收到以下错误:
nonclass.cpp: In function ‘int main(int, const char**)’:
nonclass.cpp:17: error: request for member ‘bar’ in ‘foo2’, which is of non-class type ‘Foo ()()’
为什么会这样,如何使它起作用?