次の方法で共有


stack::value_type

スタックの要素として格納されるオブジェクトの型を表す型。

typedef typename Container::value_type value_type;

解説

同期型はスタック ベースのコンテナーの value_type のシノニムです。

使用例

// stack_value_type.cpp
// compile with: /EHsc
#include <stack>
#include <iostream>

int main( )
{
   using namespace std;
   // Declares stacks with default deque base container
   stack<int>::value_type AnInt;
   
   AnInt = 69;
   cout << "The value_type is AnInt = " << AnInt << endl;

   stack<int> s1;
   s1.push( AnInt );
   cout << "The element at the top of the stack is "
        << s1.top( ) << "." << endl;
}
  

必要条件

ヘッダー: <stack>

名前空間: std

参照

関連項目

stack Class

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