我的意思是:
int main() { void a() { // code } a(); return 0; }
c++
是否可以在匿名类中初始化成员变量?
例如
class { public: int &value; } container;
c++ ×2