Compartir a través de


stack::value_type

Un tipo que representa el tipo de objeto almacenado como elemento en una pila.

typedef typename Container::value_type value_type;

Comentarios

El tipo es un sinónimo de value_type de contenedor base se adaptó por la pila.

Ejemplo

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

Requisitos

pila <deEncabezado: >

Espacio de nombres: std

Vea también

Referencia

stack (Clase)

Biblioteca de plantillas estándar