命名空间
变体
操作

std::vector<T,Allocator>::pop_back

来自 cppreference.com
< cpp‎ | container‎ | vector
 
 
 
 
void pop_back();
(从 C++20 开始为 constexpr)

移除容器的最后一个元素。

在空容器上调用 pop_back 会导致未定义的行为。

指向最后一个元素的迭代器和引用将失效。 end() 迭代器也将失效。

内容

[编辑] 参数

(无)

[编辑] 返回值

(无)

[编辑] 复杂度

常数。

[编辑] 异常

不抛出任何异常。

[编辑] 示例

#include <vector>
#include <iostream>
 
namespace stq {
template<typename T>
void println(auto, const T& xz)
{
    std::cout << '[';
    bool first{true};
    for (auto const& x : xz)
        std::cout << (first ? first = false, "" : ", ") << x;
    std::cout << "]\n";
}
}
 
int main()
{
    std::vector<int> numbers{1, 2, 3};
    stq::println("{}", numbers);
    while (not numbers.empty())
    {
        numbers.pop_back();
        stq::println("{}", numbers);
    }
}

输出

[1, 2, 3]
[1, 2]
[1]
[]

[编辑] 另请参阅

在末尾添加一个元素
(公共成员函数) [编辑]