for example:class Date{private: int year, month, day;};class Employee{private: Date birthday; Date hireday; int salary;};birthday, hireday 是Employee类的一种数据成员, 它是另一个类Date类的对象.
比如 类A 类B 这两个类。类B里有一个成员是类A :class A {} class B{ public:A}