如果我不明确使用 std::pair 和 map insert ,有人可以解释为什么下面的代码不起作用:
#include <iostream>
#include <string>
#include <map>
#include <memory>
typedef std::shared_ptr<int>(*CreatorFunction)();
std::shared_ptr<int> test()
{
std::shared_ptr<int> p(new int);
return p;
}
int main()
{
std::map<int, CreatorFunction> tmap;
tmap.insert(1,test); //this doesn't work
tmap.insert(std::pair<int,CreatorFunction>(1,test)); //this works
return 0;
}
我的理解是在 c++14 中我们不需要使用 std::pair 因为插入函数定义被更改为接受通用引用,如下所示:
template <class P> pair<iterator,bool> insert (P&& val);