当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ vector::pop_back()用法及代码示例


C++ 向量::pop_back() 函数

vector::pop_back() 是"vector" 头文件的库函数,用于从vector 尾部删除一个元素,从vector 后面删除元素并返回void。

注意:要使用矢量,请包括<vector>标题。

vector::pop_back() 函数的语法

    vector::pop_back();

参数: none——它什么都不接受。

返回值: none——在什么都没有回报。

例:

    Input:
    vector<int> v1{10, 20, 30, 40, 50};
    
    //removing elemenets
    v1.pop_back();  //removes 50
    v1.pop_back();  //removes 40

    Output:
    //if we print the values
    v1:10 20 30

演示vector::pop_back()函数示例的C++程序

//C++ STL program to demonstrate example of
//vector::pop_back() function

#include <iostream>
#include <vector>
using namespace std;

int main()
{
    //vector declaration
    vector<int> v1{ 10, 20, 30, 40, 50 };

    //printing elements
    cout << "v1:";
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    //removing elements
    v1.pop_back();
    v1.pop_back();

    //printing elements
    cout << "After removing elements..." << endl;
    cout << "v1:";
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    return 0;
}

输出

v1:10 20 30 40 50
After removing elements...
v1:10 20 30

参考:C++ 向量::pop_back()



相关用法


注:本文由纯净天空筛选整理自 vector::pop_back() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。