嗨,我今天问了一个关于 如何在同一向量数组中插入不同类型的对象的问题,我在这个问题中的代码是
gate* G[1000];
G[0] = new ANDgate() ;
G[1] = new ORgate;
//gate is a class inherited by ANDgate and ORgate classes
class gate
{
.....
......
virtual void Run()
{ //A virtual function
}
};
class ANDgate :public gate
{.....
.......
void Run()
{
//AND version of Run
}
};
class ORgate :public gate
{.....
.......
void Run()
{
//OR version of Run
}
};
//Running the simulator using overloading concept
for(...;...;..)
{
G[i]->Run() ; //will run perfectly the right Run for the right Gate type
}
我想用矢量,所以有人写道,我应该这样做:
std::vector<gate*> G;
G.push_back(new ANDgate);
G.push_back(new ORgate);
for(unsigned i=0;i<G.size();++i)
{
G[i]->Run();
}
但后来他和许多其他人建议我最好使用 Boost 指针容器
或 shared_ptr
。我已经花了3个小时阅读这个主题,但文档对我来说似乎相当高级。* * * 有人能给我一个 shared_ptr
使用的小代码示例,以及为什么他们建议使用 shared_ptr
。也有其他类型,如 ptr_vector
,ptr_list
和 ptr_deque
* * *
编辑1: 我也读过一个代码示例,其中包括:
typedef boost::shared_ptr<Foo> FooPtr;
.......
int main()
{
std::vector<FooPtr> foo_vector;
........
FooPtr foo_ptr( new Foo( 2 ) );
foo_vector.push_back( foo_ptr );
...........
}
我不懂这句话的语法!