Espaces de noms
Variantes

std::stack::push

De cppreference.com

[edit template]

<metanoindex/>

 
 
 
std :: pile
Les fonctions membres
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=
Elément d'accès
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
Modificateurs
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
 
<tbody> </tbody>
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))

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.

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

(C++11)
construit des éléments en mémoire au sommet
(fonction membre publique) [edit]
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) [edit]