目前我在threadhelper.hpp中有一个看起来像这样的类:
class Thread : public Helper<finder>{
/* lots of helper function*/
public:
Thread();
startThread(const std::string& name);
private:
Thread(const Thread&);
Thread & operator=(const Thread&);
boost::ptr_vector<thread::Foo<Bar> > m_workerThreads;
};
稍后在构造函数中我这样做(在 cpp 中):
Thread::Thread()
{
/*bunch of other stuff here.*/
for(; numThreads < numberOfWorkers; ++numThreads)
{
std::auto_ptr<thread::Foo<Bar> > newThread(new Thread());
newThread->startThread();
m_workerThreads.push_back(newThread);
}
在做了一些研究之后,我读到了一些关于自动指针和删除副本的不好的东西,这在这里似乎并不重要;但是,似乎互联网上有一些反对 auto_ptr 的东西,大多数人都说要使用 boost::shared_ptr 。这对我来说似乎是个坏主意,因为此代码需要快速并且 shared_ptr 更昂贵。
我想知道是否有人能给我一些关于这段代码的见解。共享指针在这里真的值得吗?在这里使用自动指针还有其他我不知道的问题吗?最后,在进行研究之后,我似乎无法找到最适合 boost::ptr_vector 的智能指针?
任何观点或阅读都非常感谢。