命名空间
变体
操作

std::list<T,Allocator>::emplace

来自 cppreference.com
< cpp‎ | container‎ | list
 
 
 
 
template< class... Args >
iterator emplace( const_iterator pos, Args&&... args );
(自 C++11 起)

在容器中 pos 之前插入一个新元素。

该元素通过 std::allocator_traits::construct 构造,它使用放置 new 在容器提供的内存位置就地构造元素。

参数 args... 被转发到构造函数作为 std::forward<Args>(args)...args... 可能直接或间接地引用容器中的值。

没有迭代器或引用失效。

内容

[编辑] 参数

pos - 将在其之前构造新元素的迭代器
args - 要转发到元素构造函数的参数
类型要求
-
T(容器的元素类型)必须满足 EmplaceConstructible 的要求。

[编辑] 返回值

指向已放置元素的迭代器。

[编辑] 复杂度

常数。

[编辑] 异常

如果抛出异常(例如,由构造函数抛出),则容器保持不变,就像该函数从未调用过一样(强异常保证)。

示例

#include <iostream>
#include <string>
#include <list>
 
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::list<A> container;
 
    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

[编辑] 缺陷报告

以下更改行为的缺陷报告被追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 2164 C++11 不清楚参数是否可以引用容器 澄清

[编辑] 另请参阅

插入元素
(公有成员函数) [编辑]
在末尾就地构造一个元素
(公有成员函数) [编辑]