std::multimap::emplace
STD::Multimap::Emplace
template< class... Args > iterator emplace( Args&&... args | | (since C++11) |
---|
将一个新元素插入到在给定的容器中构造的容器中。args
...
谨慎使用emplace允许构造新元素,同时避免不必要的复制或移动操作。新元素%28i.e的构造函数。std::pair<const Key, T>%29的调用参数与提供给emplace,通过std::forward<Args>(args)......
没有迭代器或引用无效。
参数
args | - | arguments to forward to the constructor of the element |
---|
返回值
将迭代器返回到插入的元素。
例外
如果任何操作引发异常,则此函数没有任何效果。
复杂性
容器大小的对数。
例
二次
#include <iostream>
#include <utility>
#include <string>
#include <map>
int main()
{
std::multimap<std::string, std::string> m;
// uses pair's move constructor
m.emplace(std::make_pair(std::string("a"), std::string("a"))
// uses pair's converting move constructor
m.emplace(std::make_pair("b", "abcd")
// uses pair's template constructor
m.emplace("d", "ddd"
// uses pair's piecewise constructor
m.emplace(std::piecewise_construct,
std::forward_as_tuple("c"),
std::forward_as_tuple(10, 'c')
for (const auto &p : m) {
std::cout << p.first << " => " << p.second << '\n';
}
}
二次
产出:
二次
a => a
b => abcd
c => cccccccccc
d => ddd
二次
另见
emplace_hint (C++11) | constructs elements in-place using a hint (public member function) |
---|---|
insert | inserts elements or nodes (since C++17) (public member function) |
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。