唠叨服饰

文章
3
资源
0
加入时间
3年0月21天

使用Foo f2();f2.bar();带来的问题

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