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;
}
  

要求

页眉: <堆栈>

命名空间: std

请参见

参考

stack 类

标准模板库