我创建了几个类如下(因为我不能把我的真实类在这里我写了几个作为例子)
class One {
private :
char *link;
int count
}
class Two {
private :
char *link;
int count
}
class Three :: public TWO {
private :
char *link;
int count ;
One One_object;
}
int main() {
Three test;
cout << test.One_object.link ; // error becoz of accessing private member
}
在这里,访问私有成员的最佳方式是什么,如果它只是访问的价值,那么我可以编写一个 get 方法函数来获取数据。
但是在我真正的课堂上有很多数据成员受到保护..你能不能通过这个..