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


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


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

vector::push_back() 是 "vector" 头文件的库函数,用于在向量的末尾插入/添加一个元素,它接受一个相同类型的元素并在向量的末尾添加给定的元素并增加向量的大小。

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

vector::push_back() 函数的语法

    vector::push_back(value_type n);

参数: n– 是要添加到向量末尾的元素。

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

例:

    Input:
    vector<int> v1;
    
    v1.push_back(20);
    v1.push_back(30);
    v1.push_back(40);
    v1.push_back(50);

    Output:
    //if we print the values
    v1:20 30 40 50   

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

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

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

int main()
{
    //vector declaration
    vector<int> v1;

    //inserting elements and printing size
    cout << "size of v1:" << v1.size() << endl;
    v1.push_back(10);
    cout << "size of v1:" << v1.size() << endl;
    v1.push_back(20);
    v1.push_back(30);
    v1.push_back(40);
    v1.push_back(50);
    cout << "size of v1:" << v1.size() << endl;

    //printing all elements
    cout << "elements of vector v1..." << endl;
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    return 0;
}

输出

size of v1:0
size of v1:1
size of v1:5
elements of vector v1...
10 20 30 40 50

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



相关用法


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