API Reference Document
std::list<T,Allocator>::
push_front
<
cpp
|
container
|
list
C++
语言
标准库头文件
自立与有宿主实现
具名要求
语言支持库
概念库
(C++20)
诊断库
工具库
字符串库
容器库
迭代器库
范围库
(C++20)
算法库
数值库
本地化库
输入/输出库
文件系统库
(C++17)
正则表达式库
(C++11)
原子操作库
(C++11)
线程支持库
(C++11)
技术规范
容器库
array
(C++11)
vector
deque
forward_list
(C++11)
list
set
multiset
map
multimap
unordered_set
(C++11)
unordered_multiset
(C++11)
unordered_map
(C++11)
unordered_multimap
(C++11)
stack
queue
priority_queue
span
(C++20)
std::list
成员函数
list::list
list::~list
list::operator=
list::assign
list::get_allocator
元素访问
list::front
list::back
迭代器
list::begin
list::cbegin
(C++11)
list::end
list::cend
(C++11)
list::rbegin
list::crbegin
(C++11)
list::rend
list::crend
(C++11)
容量
list::empty
list::size
list::max_size
修改器
list::clear
list::insert
list::emplace
(C++11)
list::erase
list::push_front
list::emplace_front
(C++11)
list::pop_front
list::push_back
list::emplace_back
(C++11)
list::pop_back
list::resize
list::swap
操作
list::merge
list::splice
list::remove
list::remove_if
list::reverse
list::unique
list::sort
非成员函数
std::swap
erase
erase_if
(C++20)
(C++20)
operator==
operator!=
operator<
operator>
operator<=
operator>=
operator<=>
(C++20 前)
(C++20 前)
(C++20 前)
(C++20 前)
(C++20 前)
(C++20)
推导指引
(C++17)
void
push_front
(
const
T
&
value
)
;
void
push_front
(
T
&&
value
)
;
(C++11 起)
前附给定元素
value
到容器起始。
没有引用和迭代器被非法化。
参数
value
-
要前附的元素值
返回值
(无)
复杂度
常数。
异常
若抛出异常,则此函数无效果(强异常保证)。
参阅
emplace_front
(C++11)
在容器头部就地构造元素
(公开成员函数)
push_back
将元素添加到容器末尾
(公开成员函数)
pop_front
移除首元素
(公开成员函数)