Namensräume
Varianten

std::queue::push

Aus cppreference.com
< cpp‎ | container‎ | queue

 
 
 
std :: Warteschlange
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.
queue::queue
queue::~queue
queue::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.
queue::front
queue::back
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.
queue::empty
queue::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.
queue::push
queue::emplace
queue::pop
queue::swap
 
void push(const T& value );
void push( T&& value );
(seit 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))

Inhaltsverzeichnis

[Bearbeiten]Parameter

value -
der Wert des Elements zu drücken
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.

[Bearbeiten]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.

[Bearbeiten]Komplexität

Equal to the complexity of Container::push_back.

[Bearbeiten]Siehe auch

(C++11)
constructs element in-place at the end
(öffentliche Elementfunktion)[edit]
entfernt das erste Element
Original:
removes the first element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(öffentliche Elementfunktion)[edit]
close