Compartilhar via


stack::value_type

Um tipo que representa o tipo de objeto armazenada como um elemento em uma pilha.

typedef typename Container::value_type value_type;

Comentários

O tipo é um sinônimo para value_type do contêiner de base adaptado pela pilha.

Exemplo

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

pilha <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe de pilha

Biblioteca de Modelos Padrão