A A
在函数中是什么意思g
?这种行为叫什么?我在初始化class A
吗?有人可以解释一下吗?感谢您宝贵的时间!
#include<iostream>
using namespace std;
class A {
public:
};
void g()
{
A A;
//if I declare 'A A;' and 'A a1' together here, then I could get an error "[Error] expected ';' before 'a1' "
}
main(){
A a2;
}