我正在尝试将 unique_ptr 存储在 unordered_map 中。我使用以下代码:
#include <unordered_map>
#include <memory>
int *function()
{
std::unordered_map< int, std::unique_ptr<int> > hash;
auto iterator=hash.find(5);
return iterator->second().get();
}
当我尝试编译它(gcc 4.7.2)时,出现以下错误:
test.cpp: In function ‘int* function()’:
test.cpp:9:29: error: no match for call to ‘(std::unique_ptr<int>) ()’
我不明白这段代码有什么问题。好像我需要使用另一种方法从迭代器中提取引用,但我不知道该怎么做。
沙查尔