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