我有简单的示例代码
class Child2{
public:
Child2(){
cout<<"this is child2"<<endl;
}
void test2(){
cout<<"Method Child 2"<<endl;
}
};
class Child1{
public:
Child2 **child2;
Child1(){
child2 = new Child2 *[1];
child2[0] = new Child2();
cout<<"this is child1"<<endl;
}
void test1(){
cout<<"Method Child 1"<<endl;
}
};
class Top{
public:
Child1 **child1;
Top(){
child1 = new Child1 *[2];
child1[0] = new Child1();
child1[1] = new Child1();
cout<<"this is top"<<endl;
}
};
现在,我知道我可以通过使用方法访问“ test2()”
top->child1[0]->child2[0]->test2();
但是如果我想动态访问该方法而不放入数组的索引,那么有什么方法可以访问所有“ child2”中的“ test2()”。我需要保留双指针,因为我想在运行时使用输入分配对象。
谢谢
答案 0 :(得分:0)
没有运算符可以神奇地为数组的所有元素调用该方法。
最简单的方法是对数组中的每个项目使用循环:
for(int ndx = 0, count = ...; count != ndx; ++ndx)
child2[ndx]->test();
您也可以使用std :: for_each,但是老实说,对于这种琐碎的情况,我发现显式循环更易读,即对我而言,正在执行的操作更加直接。