stack::value_type

A type that represents the type of object stored as an element in a stack.

typedef typename Container::value_type value_type;

Remarks

The type is a synonym for value_type of the base container adapted by the stack.

Example

// 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;
}
The value_type is AnInt = 69
The element at the top of the stack is 69.

Requirements

Header: <stack>

Namespace: std

See Also

Reference

stack Class

Standard Template Library

Other Resources

stack Members