std::multimap<Key,T,Compare,Allocator>::emplace
来自 cppreference.com
template< class... Args > iterator emplace( Args&&... args ); |
(自 C++11 起) | |
将一个新元素插入到容器中,该元素在容器中使用给定的 args 原地构造。
新元素的构造函数(即 std::pair<const Key, T>)使用与提供给 emplace
的参数完全相同的参数调用,并通过 std::forward<Args>(args)... 转发。
仔细使用 emplace
允许在构建新元素的同时避免不必要的复制或移动操作。
没有迭代器或引用失效。
内容 |
[编辑] 参数
args | - | 要转发给元素构造函数的参数 |
[编辑] 返回值
指向插入元素的迭代器。
[编辑] 异常
如果由于任何原因抛出异常,则此函数无效(强异常安全保证)。
[编辑] 复杂度
容器大小的对数。
[编辑] 示例
运行此代码
#include <iostream> #include <string> #include <utility> #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"); // emplace with duplicate key 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 d => DDD
[编辑] 另请参见
(C++11) |
使用提示原地构造元素 (公共成员函数) |
如果键不存在,则原地插入,如果键存在,则不执行任何操作 (公共成员函数) | |
插入元素 或节点(自 C++17 起) (公共成员函数) |