stack::push
將項目加入至堆疊的頂端。
void push(
const Type& _Val
);
參數
- _Val
項目會加入至堆疊的頂端。
備註
堆疊頂端的是最近加入的項目所佔用之定位和是最後一個項目至容器結尾。
範例
// stack_push.cpp
// compile with: /EHsc
#include <stack>
#include <iostream>
int main( )
{
using namespace std;
stack <int> s1;
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;
}
需求
標題: <stack>
命名空間: std