c++ map insert 获取iterator

参考链接:https://en.cppreference.com/w/cpp/container/map/insert

在c++ 17中可以想写python一样获取返回结果

map<string, int> m;
auto [iterator, success] = m.insert(make_pair("hello", 123));

在c++11中需要先用一个pair接着结果

map<string, int> m;
auto insertRet= m.insert(make_pair("hello", 123));
auto iterator = insertRet.first;
文章目录