다음을 통해 공유


list::front

목록에서 첫 번째 요소에 대 한 참조를 반환합니다.

reference front( ); 
const_reference front( ) const;

반환 값

목록이 비어 있는 경우 다시 정의 되지 않습니다.

설명

경우 반환 값의 front 배정은 const_reference, 목록 개체를 수정할 수 없습니다.경우 반환 값의 front 배정은 참조, 목록 개체를 수정할 수 있습니다.

빈 목록에서 요소에 액세스 하려고 하면 _SECURE_SCL 1을 사용 하 여 컴파일하면 런타임 오류가 발생 합니다.자세한 내용은 확인 된 반복기를 참조하십시오.

예제

// list_front.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main() {
   using namespace std;
   list <int> c1;

   c1.push_back( 10 );

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

   cout << "The first integer of c1 is " << i << endl;
   i++;
   cout << "The first integer of c1 is " << ii << endl;
}
  

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

list::back 및 list::front

표준 템플릿 라이브러리