次の方法で共有


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

参照

関連項目

stack Class

標準テンプレート ライブラリ