C++类中类:
类中成员是类
形如下:
第一种方式
class A{
public:
class B;
};
class A::B
{
void print()
{
cout<<“A::B的print()被调用”<<endl;
}
};
调用:
A::B b;
b.print();
例子:
使用namespace命名空间
定义:
class OBJECT::Boy {
public:
void print()
{
cout << "Boy" << endl;
}
};
调用:
OBJECT::Boy boy;
boy.print();