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


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


C++ vector::front() 函数

vector::front() 是 "vector" 头文件的库函数,用于访问向量的第一个元素,返回对向量第一个元素的引用。

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

vector::front() 函数的语法

    vector::front();

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

返回值: reference– 它返回对向量第一个元素的引用。

例:

    Input:
    vector<int> vector1{ 1, 2, 3, 4, 5 };

    Function call:
    cout << vector1.front() << endl;

    Output:
    1

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

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

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

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

    //accessing first element
    //using vector::front() function

    cout << "first element is:" << v1.front() << endl;

    //changing first element
    v1.at(0) = 100;
    cout << "now, first element is:" << v1.front() << endl;

    return 0;
}

输出

first element is:10
now, first element is:100

参考:C++ vector::front()



相关用法


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