template <class... Args>
pair<iterator, bool> emplace ( Args&&... args );
#include <iostream> #include <string> #include <unordered_map> using namespace std; int main() { //创建 umap 容器 unordered_map<string, string> umap; //定义一个接受 emplace() 方法的 pair 类型变量 pair<unordered_map<string, string>::iterator, bool> ret; //调用 emplace() 方法 ret = umap.emplace("STL教程", "http://task.lmcjl.com/stl/"); //输出 ret 中包含的 2 个元素的值 cout << "bool =" << ret.second << endl; cout << "iter ->" << ret.first->first << " " << ret.first->second << endl; return 0; }程序执行结果为:
bool =1
iter ->STL教程 http://task.lmcjl.com/stl/
template <class... Args>
iterator emplace_hint ( const_iterator position, Args&&... args );
#include <iostream> #include <string> #include <unordered_map> using namespace std; int main() { //创建 umap 容器 unordered_map<string, string> umap; //定义一个接受 emplace_hint() 方法的迭代器 unordered_map<string,string>::iterator iter; //调用 empalce_hint() 方法 iter = umap.emplace_hint(umap.begin(),"STL教程", "http://task.lmcjl.com/stl/"); //输出 emplace_hint() 返回迭代器 iter 指向的键值对的内容 cout << "iter ->" << iter->first << " " << iter->second << endl; return 0; }程序执行结果为:
iter ->STL教程 http://task.lmcjl.com/stl/
本文链接:http://task.lmcjl.com/news/5326.html