类的嵌套使用

有时候我们可能会使用到如

第1个类

class CA
{
public:
int i;
private:
int j;
};

第2个类
class CB
{
public:
CA c;
};

如果我们想通过CB类来访问CA类中的i,则可以使用

CB  b;

b.c.i;

你可能感兴趣的:(类的嵌套使用)