命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | 容器‎ | 前向列表
 
 
 
 
void pop_front();
(自 C++11)

移除容器的第一个元素。如果容器中没有元素,则行为未定义。

指向已删除元素的引用和迭代器将失效。

内容

[编辑] 参数

(无)

[编辑] 返回值

(无)

[编辑] 复杂度

常数。

[编辑] 异常

不抛出。

[编辑] 示例

#include <forward_list>
#include <iostream>
 
int main()
{
    std::forward_list<char> chars{'A', 'B', 'C', 'D'};
 
    for (; !chars.empty(); chars.pop_front())
        std::cout << "chars.front(): '" << chars.front() << "'\n";
}

输出

chars.front(): 'A'
chars.front(): 'B'
chars.front(): 'C'
chars.front(): 'D'

[编辑] 另请参阅

在开头插入一个元素
(公有成员函数) [编辑]
访问第一个元素
(公有成员函数) [编辑]