◐ Shell
clean mode source ↗

std::queue::push - cppreference.com

De cppreference.com

<tbody> </tbody>

void push( const value_type& value );

void push( value_type&& value );

(desde C++11)

Empurra o dado elemento value para o fim da fila.

1) Efetivamente chama c.push_back(value)

2) Efetivamente chama c.push_back(std::move(value))

Parâmetros

value - o valor do elemento a empurrar

Valor de retorno

(nenhum)

Complexidade

Igual à complexidade de Container::push_back.

Veja também

constructs element in-place at the end
(função pública membro) [edit]

remove o primeiro elemento

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.


(função pública membro) [edit]