다음을 통해 공유


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>

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

표준 템플릿 라이브러리