cppreference.com
创建帐户
登录
命名空间
页面
讨论
变体
视图
视图
编辑
历史记录
操作
std::list<T,Allocator>::
get_allocator
来自 cppreference.com
<
cpp
|
容器
|
列表
[编辑模板]
C++
编译器支持
独立和托管
语言
标准库
标准库头文件
命名要求
功能测试宏
(C++20)
语言支持库
概念库
(C++20)
元编程库
(C++11)
诊断库
通用实用程序库
字符串库
容器库
迭代器库
范围库
(C++20)
算法库
数值库
本地化库
输入/输出库
文件系统库
(C++17)
正则表达式库
(C++11)
并发支持库
(C++11)
执行支持库
(C++26)
技术规范
符号索引
外部库
[编辑]
容器库
序列
数组
(C++11)
向量
向量
<bool>
inplace_vector
(C++26)
双端队列
单向链表
(C++11)
列表
关联
集合
多重集合
映射
多重映射
无序关联
无序集合
(C++11)
无序多重集合
(C++11)
无序映射
(C++11)
无序多重映射
(C++11)
适配器
堆栈
队列
优先队列
flat_set
(C++23)
flat_multiset
(C++23)
flat_map
(C++23)
flat_multimap
(C++23)
视图
跨度
(C++20)
mdspan
(C++23)
表格
迭代器失效
成员函数表
非成员函数表
[编辑]
std::list
成员函数
list::list
list::~list
list::operator=
list::assign
list::assign_range
(C++23)
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::size
list::empty
list::max_size
修改器
list::clear
list::insert
list::insert_range
(C++23)
list::emplace
(C++11)
list::erase
list::push_front
list::emplace_front
(C++11)
list::prepend_range
(C++23)
list::pop_front
list::push_back
list::emplace_back
(C++11)
list::append_range
(C++23)
list::pop_back
list::resize
list::swap
操作
list::merge
list::splice
list::remove
list::remove_if
list::reverse
list::unique
list::sort
非成员函数
operator==
operator<=>
(C++20)
swap
(std::list)
erase
(std::list)
erase_if
(std::list)
(C++20)
(C++20)
operator!=
operator<
operator>
operator<=
operator>=
(直到 C++20)
(直到 C++20)
(直到 C++20)
(直到 C++20)
(直到 C++20)
推导指南
(C++17)
[编辑]
allocator_type get_allocator
(
)
const
;
(自 C++11 起 noexcept)
返回与容器关联的分配器。
[
编辑
]
参数
(无)
[
编辑
]
返回值
关联的分配器。
[
编辑
]
复杂度
常数。