std :: unique_ptr使用自定义删除器,参数很少

时间:2015-12-26 10:45:31

标签: c++ c++11 unique-ptr

我想知道是否可以使用多个参数(标准删除签名)为std :: unique_ptr指定自定义删除器。我知道使用std :: shared_ptr存在与std :: bind的解决方法,这使得它成为可能但是std :: unique_ptr存在的一些技巧?

对我而言似乎不是因为根据http://en.cppreference.com/w/cpp/memory/unique_ptr

  

类型要求   -Deleter必须是FunctionObject或lvalue引用的FunctionObject或lvalue函数引用,可以使用   unique_ptr :: pointer

类型的参数

1 个答案:

答案 0 :(得分:5)

void my_free(int* p, int x, int y){
  std:: cout << x << " " << y << "\n";
}
int main()
{
    auto my_deleter = std::bind(my_free, std::placeholders::_1, 1, 2) ;
    auto my_lambda = [](int* t) { my_free(t, 3, 4); };
    std::unique_ptr<int, decltype(my_deleter)> ptr(new int, my_deleter);
    std::unique_ptr<int, decltype(my_lambda)> ptr2(new int, my_lambda);
    return 0;
}