提升unique_ptr Deletor

时间:2010-10-06 14:47:09

标签: c++ boost

如果我想创建unique_ptr类型QueueList(一些自定义对象),我该如何为它定义一个deletor,或者我是否已经使用了一个模板'Deletor'? / p>

我想要一个unique_ptr所以我可以安全地在线程之间传输对象,而不需要在线程之间共享它。

修改

boost::interprocess::unique_ptr<QueueList> LIST;  ///FAILS to COMPILE!!!

LIST mylist;

编译器:MS Visual Studio 2003

ERROR:

错误C2976:'boost :: interprocess :: unique_ptr':模板参数太少

错误C2955:'boost :: interprocess :: unique_ptr':使用类模板需要模板参数列表        :参见'boost :: interprocess :: unique_ptr'的声明

1 个答案:

答案 0 :(得分:9)

这是一个简单的删除类,只在任何给定对象上调用delete:

template<typename T> struct Deleter {
    void operator()(T *p)
    {
        delete p;
    }
};

然后您可以将它与unique_ptr一起使用,如下所示:

boost::interprocess::unique_ptr<QueueList, Deleter<QueueList> > LIST;