std::queue::push

std::queue::push

void push( const value_type& value );
void push( value_type&& value );
(since 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))

Parameters

value - the value of the element to push

Return value

(none).

Complexity

Equal to the complexity of Container::push_back.

See also

(C++11)
constructs element in-place at the end
(public member function)
removes the first element
(public member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/queue/push

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部