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