std::forward_list<T,Allocator>::emplace_front
来自 cppreference.com
< cpp | container | forward list
template< class... Args > void emplace_front( Args&&... args ); |
(自 C++11 起) (直到 C++17) |
|
template< class... Args > reference emplace_front( Args&&... args ); |
(自 C++17 起) | |
在容器的开头插入一个新元素。该元素是通过 std::allocator_traits::construct 构造的,它通常使用就地 new 在容器提供的内存位置就地构造元素。参数 args... 被转发到构造函数作为 std::forward<Args>(args)....
没有迭代器或引用被失效。
内容 |
[编辑] 参数
args | - | 要转发到元素构造函数的参数 |
类型要求 | ||
-T(容器的元素类型) 必须满足 EmplaceConstructible 的要求。 |
[编辑] 返回值
(无) | (直到 C++17) |
对插入元素的引用。 | (自 C++17 起) |
[编辑] 复杂度
常数。
[编辑] 异常
如果由于任何原因抛出异常,则此函数将不起作用 (强异常安全保证).
[编辑] 参见
将元素插入开头 (公共成员函数) |