Namespace
Varianti

cpp/container/stack/~stack: differenze tra le versioni

Da cppreference.com.
< cpp‎ | container‎ | stack
m (una revisione importata: Translate from the English version)
m (r2.7.3) (Bot: Aggiungo de, en, es, fr, ja, pt, ru, zh)
Riga 1: Riga 1:
 
{{page template|cpp/container/destructor|stack}}
 
{{page template|cpp/container/destructor|stack}}
 +
 +
 +
 +
 +
 +
 +
 +
 +

Versione delle 11:08, 2 nov 2012

 
 
 
std :: stack
Membri funzioni
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 accesso
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
Capacità
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
Modificatori
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. I distruttori degli elementi sono i chiamati e di archiviazione utilizzato è rilasciato. Si noti che, se gli elementi sono puntatori, le punte, agli oggetti non vengono distrutti.
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.

Complessità

Linear in the size of the container adaptor.