Namensräume
Varianten
Aktionen

cpp/container/stack/pop: Unterschied zwischen den Versionen

Aus cppreference.com
< cpp‎ | container‎ | stack
(Translated from the English version using Google Translate)
 
K (1 Version: Translate from the English version)

Version vom 25. Oktober 2012, 09:57 Uhr

 
 
 
std :: stack
Member-Funktionen
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=
Elementzugriff zerstört
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
Kapazität
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
Modifiers
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
 
void pop();

Removes the top element from the stack. Effectively calls c.pop_back()

Inhaltsverzeichnis

Parameter

(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Rückgabewert

(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Komplexität

Equal to the complexity of Container::pop_back.

Siehe auch

(C++11)
constructs element in-place at the top
(öffentliche Elementfunktion) [edit]
inserts element at the top
(öffentliche Elementfunktion) [edit]