嗨,我今天问一个问题,关于如何在同一向量数组中插入不同类型的对象,我在该问题中的代码是
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
** **
Edit1:我也阅读了一个代码示例,其中包括:
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 );
...........
}
而且我不懂语法!
main
创建一个向量,该向量可以包含指向一个称为类型的共享指针Foo
。第二个创建一个Foo
usingnew
,以及一个共享的指针来管理它;第三个将共享指针的副本放入向量中。