在C++中,所有容器(向量,堆栈,队列,集合,映射等)都支持插入和放置操作。
emplace的优点是,它可以就地插入并且避免了不必要的对象复制。对于原始数据类型,我们使用哪种类型都没有关系。但是对于对象,出于效率考虑,首选使用emplace()。
// C++ code to demonstrate difference between
// emplace and insert
#include
using namespace std;
int main()
{
// declaring map
multiset> ms;
// using emplace() to insert pair in-place
ms.emplace('a', 24);
// Below line would not compile
// ms.insert('b', 25);
// using emplace() to insert pair in-place
ms.insert(make_pair('b', 25));
// printing the multiset
for (auto it = ms.begin(); it != ms.end(); ++it)
cout << " " << (*it).first << " "
<< (*it).second << endl;
return 0;
}
输出:
a 24
b 25
有关详细信息,请参阅在std :: map中插入元素(insert,emplace和运算符 [])。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。