获取指向类型的boost shared_ptr

时间:2013-08-09 11:11:05

标签: c++ boost shared-ptr smart-pointers

在我的项目中,我使用boost :: shared_ptr,在一个头文件中,我写道:

typedef boost::shared_ptr<boost::lockfree::spsc_queue<PacketsInput, boost::lockfree::capacity<4096> > > queue_ptr;

在另一个源文件中,我使用它:

std::vector<queue_ptr> v;
for (...)
    v.push_back(boost::make_shared(/* #1 */));

在#1中,我想将queue_ptr的点写入type,而不是

boost::lockfree::spsc_queue<PacketsInput, boost::lockfree::capacity<4096> >

它有多长!

但是boost :: shared_ptr中没有typedef,我找到的唯一一个是typedef:typedef typename boost::detail::sp_element< T >::type element_type;但是我不知道如何使用它。

有任何帮助吗?坦克很多!

2 个答案:

答案 0 :(得分:4)

Documentation说有一个名为element_type的成员typedef:

此示例程序运行正常(断言传递):

#include <boost/shared_ptr.hpp>
#include <boost/type_traits.hpp>
#include <cassert>

int main()
{
    bool b =  boost::is_same<boost::shared_ptr<int>::element_type, int>::value;
    assert(b);
}

鉴于您已声明的typedef,您可以像这样使用它:

typedef queue_ptr::element_type elem_type;
v.push_back( boost::make_shared<elem_type>( /* args for ctor */ ) );

答案 1 :(得分:1)

您可以使用两个typedef

   typedef boost::lockfree::spsc_queue<PacketsInput, boost::lockfree::capacity<4096> > my_queue;
   typedef boost::shared_ptr<my_queue> my_queue_ptr;

然后您可以在my_queue中使用make_shared