vector::front

返回对矢量的第一个元素。

reference front( ); 
const_reference front( ) const;

返回值

对于第一个元素的引用在矢量对象。 如果该向量为空,则返回未定义。

备注

如果 front 的返回值赋给 const_reference,不能修改向量对象。 如果 front 的返回值赋给 reference,可以修改向量对象。

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

示例

// vector_front.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;   
   vector <int> v1;
   
   v1.push_back( 10 );
   v1.push_back( 11 );

   int& i = v1.front( );
   const int& ii = v1.front( );

   cout << "The first integer of v1 is "<< i << endl;
   // by incrementing i, we move the the front reference to the second element
   i++;
   cout << "Now, the first integer of v1 is "<< i << endl;
}

Output

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

要求

标头: <vector>

命名空间: std

请参见

参考

vector Class

vector::front 和 vector::back

标准模板库