cppreference.com
创建账户
登录
命名空间
页面
讨论
变体
视图
视图
编辑
历史
操作
std::queue<T,Container>::
pop
来自 cppreference.com
<
cpp
|
容器
|
队列
[编辑模板]
C++
编译器支持
独立和托管
语言
标准库
标准库头文件
命名需求
特性测试宏
(C++20)
语言支持库
概念库
(C++20)
元编程库
(C++11)
诊断库
通用实用程序库
字符串库
容器库
迭代器库
范围库
(C++20)
算法库
数值库
本地化库
输入/输出库
文件系统库
(C++17)
正则表达式库
(C++11)
并发支持库
(C++11)
执行支持库
(C++26)
技术规范
符号索引
外部库
[编辑]
容器库
序列
数组
(C++11)
向量
vector
<bool>
就地向量
(C++26)
双端队列
单向链表
(C++11)
链表
关联
集合
多重集
映射
多重映射
无序关联
无序集合
(C++11)
无序多重集
(C++11)
无序映射
(C++11)
无序多重映射
(C++11)
适配器
堆栈
队列
优先队列
扁平集合
(C++23)
扁平多重集
(C++23)
扁平映射
(C++23)
扁平多重映射
(C++23)
视图
跨度
(C++20)
mdspan
(C++23)
表格
迭代器失效
成员函数表
非成员函数表
[编辑]
std::queue
成员函数
queue::queue
queue::~queue
queue::operator=
元素访问
queue::front
queue::back
容量
queue::empty
queue::size
修改器
queue::push
queue::push_range
(C++23)
queue::emplace
(C++11)
queue::pop
queue::swap
(C++11)
非成员函数
swap
(std::queue)
(C++11)
operator==
operator!=
operator<
operator>
operator<=
operator>=
operator<=>
(C++20)
辅助类
uses_allocator
<std::queue>
(C++11)
formatter
<std::queue>
(C++23)
推断指南
(C++17)
[编辑]
void
pop
(
)
;
从队列的前面移除一个元素。实际上调用
c.
pop_front
(
)
.
内容
1
参数
2
返回值
3
复杂度
4
示例
5
参见
[
编辑
]
参数
(无)
[
编辑
]
返回值
(无)
[
编辑
]
复杂度
等于
Container
::
pop_front
的复杂度。
[
编辑
]
示例
[
编辑
]
参见
emplace
(C++11)
在末尾就地构造元素
(公有成员函数)
[编辑]
push
在末尾插入元素
(公有成员函数)
[编辑]
front
访问第一个元素
(公有成员函数)
[编辑]