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;
}