Suppose I have the following class:
class Test { int num; public: Test(int x):num(x){} Test(const Test &rhs):num(
Private members are private to the class itself, not the instances of the class.