std::queue::push — cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
||
|
|
(depuis C++11) | |
Pushes the given element value to the end of the queue.
1) Effectively calls c.push_back(value)
2) Effectively calls c.push_back(std::move(value))
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. |
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.
Complexité
Equal to the complexity of Container::push_back.
Voir aussi
| construit des éléments en mémoire à la fin (fonction membre publique) [edit] | |
supprime le premier élément Original: removes the first element The text has been machine-translated via Google Translate. (fonction membre publique) [edit] | |