std::stack::push
De cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
void push(const T& value ); | ||
void push( T&& value ); | (depuis C++11) | |
Pushes the given element value
to the top of the stack.
1) Effectively calls c.push_back(value)
2) Effectively calls c.push_back(std::move(value))
Sommaire |
[modifier]Paramètres
value | - | la valeur de l'élément à enfoncer Original: the value of the element to push The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier]Retourne la valeur
(Aucun)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifier]Complexité
Equal to the complexity of Container::push_back.
[modifier]Voir aussi
(C++11) | construit des éléments en mémoire au sommet (fonction membre publique) |
supprime l'élément supérieur 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. (fonction membre publique) |