如果我有两个班级,例如这样
class A {
...
protected:
B* test;
aFunction();
};
class B {
...
protected:
A* test1;
public:
bFunction();
};
我可以在 B 类里面这样做吗bFunction()
:
bFunction(){
test1->aFunction();
}
基本上,我可以从不是从该函数派生的类中调用某个类的受保护函数吗?