C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- std::array
- std::vector
- std::map
- std::unordered_map
- std::priority_queue
- std::span
- std::forward_list
- std::forward_list<T,Allocator>::forward_list
- std::forward_list<T,Allocator>::~forward_list
- std::forward_list<T,Allocator>::operator=
- std::forward_list<T,Allocator>::unique
- std::forward_list<T,Allocator>::reverse
- std::forward_list<T,Allocator>::sort
- std::forward_list 的推导指引
- std::forward_list<T,Allocator>::merge
- std::forward_list<T,Allocator>::splice_after
- std::forward_list<T,Allocator>::remove, remove_if
- operator==,!=,<,<=,>,>=,<=>(std::forward_list)
- std::swap(std::forward_list)
- std::erase, std::erase_if (std::forward_list)
- std::forward_list<T,Allocator>::swap
- std::forward_list<T,Allocator>::erase_after
- std::forward_list<T,Allocator>::push_front
- std::forward_list<T,Allocator>::emplace_front
- std::forward_list<T,Allocator>::pop_front
- std::forward_list<T,Allocator>::resize
- std::forward_list<T,Allocator>::empty
- std::forward_list<T,Allocator>::max_size
- std::forward_list<T,Allocator>::clear
- std::forward_list<T,Allocator>::insert_after
- std::forward_list<T,Allocator>::emplace_after
- std::forward_list<T,Allocator>::begin, std::forward_list<T,Allocator>::cbegin
- std::forward_list<T,Allocator>::end, std::forward_list<T,Allocator>::cend
- std::forward_list<T,Allocator>::assign
- std::forward_list<T,Allocator>::get_allocator
- std::forward_list<T,Allocator>::front
- std::forward_list<T,Allocator>::before_begin, cbefore_begin
- std::deque
- std::list
- std::set
- std::multiset
- std::multimap
- std::unordered_set
- std::unordered_multiset
- std::unordered_multimap
- std::stack
- std::queue
- std::vector<bool>
- 结点把柄 (C++17)
- 注释
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >容器库 >std::forward_list > std::forward_list<T,Allocator>::splice_after
std::forward_list<T,Allocator>::splice_after
void splice_after( const_iterator pos, forward_list& other ); |
(1) | (C++11 起) |
void splice_after( const_iterator pos, forward_list&& other ); |
(1) | (C++11 起) |
void splice_after( const_iterator pos, forward_list& other, const_iterator it ); |
(2) | (C++11 起) |
void splice_after( const_iterator pos, forward_list&& other, const_iterator it ); |
(2) | (C++11 起) |
void splice_after( const_iterator pos, forward_list& other, const_iterator first, const_iterator last ); |
(3) | (C++11 起) |
void splice_after( const_iterator pos, forward_list&& other, const_iterator first, const_iterator last ); |
(3) | (C++11 起) |
从另一 forward_list
移动元素到 *this 。
不复制元素。 pos
必须是指向 *this 中的可解引用迭代器或 before_begin() 迭代器(特别是 end() 不是 pos
的合法参数值)。若 get_allocator() != other.get_allocator() 则行为未定义。没有迭代器或引用被非法化,指向被移动的元素的迭代器现在指代到 *this 中,而非 other
中。
1) 从
other
移动所有元素到 *this 。元素被插入到 pos
所指向的元素后。操作后 other
变为空。若 other
与 *this 指代同一对象则行为未定义。2) 从
other
移动后随 it
的迭代器所指向的元素到 *this 。元素被插入到 pos
所指向的元素后,若 pos == it
或若 pos == ++it
则无效果。3) 从
other
移动范围 (first, last)
中的元素到 *this 。元素被插入到 pos
所指向的元素后。不移动 first
所指向的元素。若 pos
是范围 (first,last)
中的元素则行为未定义。参数
pos | - | 指向将插入内容到其后的元素的迭代器 |
other | - | 移动内容来源的另一容器 |
it | - | 指向从 other 移动到 *this 的元素的迭代器的前趋迭代器
|
first, last | - | 从 other 移动到 *this 的元素范围
|
返回值
(无)
异常
不抛出。
复杂度
1) 与
other
的大小成线性2) 常数
3) 与 std::distance(first, last) 成线性
示例
演示 splice_after()
第三种形式中开区间 (first, last) 的含义:不移动 l1
的首元素。
运行此代码
#include <iostream> #include <forward_list> int main() { std::forward_list<int> l1 = {1, 2, 3, 4, 5}; std::forward_list<int> l2 = {10, 11, 12}; l2.splice_after(l2.cbegin(), l1, l1.cbegin(), l1.cend()); // 不等价于 l2.splice_after(l2.cbegin(), l1); for (int n : l1) std::cout << n << ' '; std::cout << '\n'; for (int n : l2) std::cout << n << ' '; std::cout << '\n'; }
输出:
1 10 2 3 4 5 11 12
参阅
合并二个已排序列表 (公开成员函数) | |
移除满足特定标准的元素 (公开成员函数) |