std::flat_multiset<Key,Compare,KeyContainer>::emplace
来自 cppreference.cn
< cpp | 容器 | flat multiset
template< class... Args > iterator emplace( Args&&... args ); |
(C++23 起) | |
使用给定的 args 在容器中就地构造新元素。
首先,使用 std::forward<Args>(args)... 初始化一个类型为value_type
的对象 t,然后插入 t,如同通过auto it = ranges::upper_bound(c, t, compare); c.insert(it, std::move(t));
此重载仅在 std::is_constructible_v<value_type, Args...> 为 true 时参与重载决议。
谨慎使用 emplace
允许构造新元素,同时避免不必要的复制或移动操作。
迭代器失效信息从 此处 复制 |
目录 |
[编辑] 参数
args | - | 转发给元素构造函数的参数 |
[编辑] 返回值
指向已插入元素的迭代器。
[编辑] 异常
如果由于任何原因抛出异常,此函数无效果(强异常安全保证)。
[编辑] 复杂度
容器大小的对数级别。
[编辑] 示例
本节不完整 原因:无示例 |
[编辑] 参阅
使用提示就地构造元素 (public member function) | |
插入元素 (public member function) |