queue::pop
큐의 앞에서 요소를 제거 합니다.
void pop( );
설명
큐는 멤버 함수를 적용 하는 비워 둘 수 없습니다.큐 맨 최근에 추가한 요소가 차지 하는 위치 이며 끝 컨테이너의 마지막 요소입니다.
예제
// queue_pop.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>
int main( )
{
using namespace std;
queue <int> q1, s2;
q1.push( 10 );
q1.push( 20 );
q1.push( 30 );
queue <int>::size_type i;
i = q1.size( );
cout << "The queue length is " << i << "." << endl;
i = q1.front( );
cout << "The element at the front of the queue is "
<< i << "." << endl;
q1.pop( );
i = q1.size( );
cout << "After a pop the queue length is "
<< i << "." << endl;
i = q1. front ( );
cout << "After a pop, the element at the front of the queue is "
<< i << "." << endl;
}
요구 사항
헤더: <queue>
네임 스페이스: std