自定义删除器以通过std :: unique_ptr

时间:2016-07-28 08:26:33

标签: c++14 smart-pointers

假设我正在将给定map<string, string>的环境变量列表解析为unique_ptr<char*[]>所持有的2D内存。但是,我不确定如何为这个2D内存案例自定义删除器?

// Given: env (type of map<string, string>)
// Return: unique_ptr<char*[]> (with customized deleter)

// Prepare for parsing the environment to c-style strings
auto idx = size_t{0};

// What should I fill for `ret` a proper deleter that won't give memory leak?
auto ret = std::make_unique<char*[]>(env.size() + 1, ???);   
for(const auto& kvp : env) {
  auto entry = kvp.first + "=" + kvp.second;
  ret[idx] = new char[entry.size() + 1]; 
  strncpy(ret[idx], entry.c_str(), entry.size() + 1); 
  ++idx;
}
ret[idx] = nullptr;  // For the later use of exec call

return ret;

显然,由于内部for循环中的new operator,上面的代码会泄漏。

1 个答案:

答案 0 :(得分:2)

没有std::make_unique版本接受删除器作为参数(顺便说一下,std::make_unique是C ++ 14,而不是C ++ 11)。试试这个:

size_t size = env.size() + 1;

auto ret = std::unique_ptr<char*, std::function<void(char**)> >(
    new char* [size],
    [size](char** ptr)
    {
        for(size_t i(0); i < size; ++i)
        {
            delete[] ptr[i];
        }
        delete[] ptr;
    }
);

您可以将ret.get()传递给execvpe。