命名空间
变体
操作

std::forward_list<T,Allocator>::emplace_after

来自 cppreference.com
< cpp‎ | 容器‎ | 正向列表
 
 
 
 
template< class... Args >
iterator emplace_after( const_iterator pos, Args&&... args );
(自 C++11 起)

在容器中指定位置之后插入一个新元素。元素在原地构造,即不执行任何复制或移动操作。元素的构造函数使用与传递给函数完全相同的参数调用。

没有任何迭代器或引用失效。

内容

[编辑] 参数

pos - 在该迭代器之后构造新元素的迭代器
args - 要转发给元素构造函数的参数

[编辑] 返回值

指向新元素的迭代器。

[编辑] 复杂度

恒定。

[编辑] 异常

如果由于任何原因抛出异常,则此函数无效 (强异常安全保证)。

[编辑] 示例

该示例演示了以自然顺序(与反向相反)填充单链表的规范方法。

#include <forward_list>
#include <iostream>
#include <string>
 
struct Sum
{
    std::string remark;
    int sum;
 
    Sum(std::string remark, int sum)
        : remark{std::move(remark)}, sum{sum} {}
 
    void print() const
    {
        std::cout << remark << " = " << sum << '\n';
    }
};
 
int main()
{
    std::forward_list<Sum> list;
 
    auto iter = list.before_begin();
    std::string str{"1"};
 
    for (int i{1}, sum{1}; i != 10; sum += i)
    {
        iter = list.emplace_after(iter, str, sum);
        ++i;
        str += " + " + std::to_string(i);
    }
 
    for (const Sum& s : list)
        s.print();
}

输出

1 = 1
1 + 2 = 3
1 + 2 + 3 = 6
1 + 2 + 3 + 4 = 10
1 + 2 + 3 + 4 + 5 = 15
1 + 2 + 3 + 4 + 5 + 6 = 21
1 + 2 + 3 + 4 + 5 + 6 + 7 = 28
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 = 36
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 = 45

[编辑] 另请参阅

在元素之后插入元素
(公有成员函数) [编辑]