假设我有一个基类和派生类,以及一个函数,它采用指向基类的指针的 stl 向量:
class A { public: int x; };
class B : public A { };
void foo(const vector<A*> &va) {
for (vector<A*>::const_iterator it = va.begin(); it < va.end(); it++)
cout << (*it)->x << endl;
}
有没有办法将指针列表传递给派生类?IE:
vector<B*> vb;
// ... add pointers to vb ...
foo(vb);
以上将导致以下编译器错误:
error: could not convert ‘vb’ from ‘std::vector<B*>’ to ‘std::vector<A*>’
即使 B* 可以转换为 A*。
最后,如果有纯指针的解决方案,它是否也适用于 boost 共享指针?