vector::front

返回对向量中第一个元素的引用。

reference front( );  const_reference front( ) const;

返回值

对向量对象中第一个元素的引用。 如果向量为空,则返回值不确定。

备注

如果将 front 的返回值分配给 const_reference,则无法修改矢量对象。 如果将 front 的返回值分配给引用,则可以修改向量对象。

使用 _SECURE_SCL 1 编译时,如果试图访问空向量中的元素,将发生运行时错误。 有关更多信息,请参见经过检查的迭代器

示例

// vector_front.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
using namespace std;  
int main( )
{
  vector <int> vec;
    vec.push_back(10);
    vec.push_back(20);

    int& i = vec.front();
    const int& ci = vec.front();

    cout << "The value of vec[0] is " << i << endl;

    // front() returns a reference, not an iterator
    // by incrementing i, we change the value of the first element
    i++;
    cout << "Now, the value of vec[0] is " << i << endl;

   // ci++; compiler error because ci is const}

输出

The first integer of v1 is 10
Now, the first integer of v1 is 11

要求

标头:<vector>

命名空间: std

请参见

参考

vector 类

vector::front 和 vector::back

标准模板库