The Wayback Machine - https://web.archive.org/web/20170717195212/http://es.cppreference.com/w/cpp/container/stack/%7Estack
Espacios de nombres
Variantes
Acciones

std::stack::~stack

De cppreference.com
< cpp‎ | container‎ | stack

 
 
 
std :: pila
Las funciones miembro
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=
Elemento acceso
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
Capacidad
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
 
~stack();
Destructs the container adaptor. Los destructores de los elementos son llamados y el almacenamiento utilizado se cancela la asignación. Tenga en cuenta que si los elementos son punteros, los objetos apuntados a no se destruyen .
Original:
Destructs the container adaptor. The destructors of the elements are called and the used storage is deallocated. Note, that if the elements are pointers, the pointed-to objects are not destroyed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Complejidad

Linear in the size of the container adaptor.

close