close
Espaços nominais
Variantes
Ações

std::stack::push

De cppreference.com
 
 
 
std :: stack
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::stack
stack::~stack
stack::operator=
acesso. Elemento
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::top
Capacidade
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::empty
stack::size
Modificadores
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::push
stack::emplace
stack::pop
stack::swap
 
<tbody> </tbody>
void push( const value_type& value );
void push( value_type&& value );
(desde C++11)

Empurra o dado elemento value para o topo da pilha.

1) Efetivamente chama c.push_back(value)
2) Efetivamente chama c.push_back(std::move(value))

Parâmetros

value - o valor do elemento a empurrar

Valor de retorno

(nenhum)

Complexidade

Igual à complexidade de Container::push_back.

Veja também

(C++11)
constructs element in-place at the top
(função pública membro) [edit]
remove o elemento superior
Original:
removes the top element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]