命名空间
变体
操作

std::flat_multiset<Key,Compare,KeyContainer>::emplace

来自 cppreference.cn
 
 
 
 
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) [编辑]