queue::front
큐의 앞에서 첫 번째 요소에 대 한 참조를 반환합니다.
reference front( );
const_reference front( ) const;
반환 값
큐의 첫 번째 요소입니다.큐가 비어 있을 경우 반환 값은 정의 되지 않습니다.
설명
경우 반환 값을 front 배정은 const_reference, 큐 개체를 수정할 수 없습니다.경우 반환 값을 front 배정은 참조, 큐 개체를 수정할 수 있습니다.
멤버 함수에서 반환 된 참조 제어 되는 시퀀스의 첫째 요소에는 있어야 비어 있지 않은.
빈 대기열에서 요소에 액세스 하려고 하면 _SECURE_SCL 1을 사용 하 여 컴파일하면 런타임 오류가 발생 합니다.자세한 내용은 확인 된 반복기를 참조하십시오.
예제
// queue_front.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>
int main() {
using namespace std;
queue <int> q1;
q1.push( 10 );
q1.push( 20 );
q1.push( 30 );
queue <int>::size_type i;
i = q1.size( );
cout << "The queue length is " << i << "." << endl;
int& ii = q1.back( );
int& iii = q1.front( );
cout << "The integer at the back of queue q1 is " << ii
<< "." << endl;
cout << "The integer at the front of queue q1 is " << iii
<< "." << endl;
}
Output
The queue length is 3.
The integer at the back of queue q1 is 30.
The integer at the front of queue q1 is 10.
요구 사항
헤더: <queue>
네임 스페이스: std