std::vector<T,Allocator>::emplace
来自 cppreference.cn
template< class... Args > iterator emplace( const_iterator pos, Args&&... args ); |
(C++11 起) (C++20 起为 constexpr) |
|
在 pos 之前直接将一个新元素插入容器。
元素通过 std::allocator_traits::construct 构造,它通常使用放置 new 在容器提供的位置原地构造元素。然而,如果所需位置已被现有元素占用,则插入的元素首先在另一个位置构造,然后移动赋值到所需位置。
参数 args... 被转发给构造函数,作为 std::forward<Args>(args)...。 args... 可以直接或间接引用容器中的值。
如果在操作之后,新的 size()
大于旧的 capacity()
,则会发生重新分配,在这种情况下,所有迭代器(包括 end()
迭代器)以及对元素的所有引用都将失效。否则,只有插入点之前的迭代器和引用仍然有效。
目录 |
[edit] 参数
pos | - | 新元素将被构造在其之前的迭代器 |
args | - | 转发给元素构造函数的参数 |
类型要求 | ||
-T 必须满足 可移动赋值 (MoveAssignable)、可移动插入 (MoveInsertable) 和 原地构造 (EmplaceConstructible) 的要求。 |
[edit] 返回值
指向已放置元素的迭代器。
[edit] 复杂度
与 pos 和 end() 之间的距离成线性关系。
[edit] 异常
如果抛出异常,而不是由 T
的复制构造函数、移动构造函数、赋值运算符或移动赋值运算符抛出,或者在 emplace
用于在末尾插入单个元素且 T
是 可复制插入 (CopyInsertable) 或非抛出移动构造的情况下抛出异常,则没有影响(强异常保证)。
否则,效果未指定。
示例
运行此代码
#include <iostream> #include <string> #include <vector> struct A { std::string s; A(std::string str) : s(std::move(str)) { std::cout << " constructed\n"; } A(const A& o) : s(o.s) { std::cout << " copy constructed\n"; } A(A&& o) : s(std::move(o.s)) { std::cout << " move constructed\n"; } A& operator=(const A& other) { s = other.s; std::cout << " copy assigned\n"; return *this; } A& operator=(A&& other) { s = std::move(other.s); std::cout << " move assigned\n"; return *this; } }; int main() { std::vector<A> container; // reserve enough place so vector does not have to resize container.reserve(10); std::cout << "construct 2 times A:\n"; A two{"two"}; A three{"three"}; std::cout << "emplace:\n"; container.emplace(container.end(), "one"); std::cout << "emplace with A&:\n"; container.emplace(container.end(), two); std::cout << "emplace with A&&:\n"; container.emplace(container.end(), std::move(three)); std::cout << "content:\n"; for (const auto& obj : container) std::cout << ' ' << obj.s; std::cout << '\n'; }
输出
construct 2 times A: constructed constructed emplace: constructed emplace with A&: copy constructed emplace with A&&: move constructed content: one two three
[edit] 缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 2164 | C++11 | 不清楚参数是否可以引用容器 | 已明确 |
[edit] 参阅
插入元素 (public member function) | |
(C++11) |
就地构造元素于结尾 (public member function) |