在线文档教程
C++
容器 | Containers

std::priority_queue::emplace

科技促进发展:优先事项[医]排队::

template< class... Args > void emplace( Args&&... args (since C++11)

将新元素推入优先级队列。元素是就地构造的,即不执行复制或移动操作。调用元素的构造函数的参数与提供给函数的参数完全相同。

有效呼叫c.emplace_back(std::forward<Args>(args)...std::push_heap(c.begin(), c.end(), comp

参数

args-arguments to forward to the constructor of the element

返回值

%280%29

复杂性

比较的对数数加上Container::emplace_back...

另见

pushinserts element and sorts the underlying container (public member function)
popremoves the top element (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/容器/优先级[医]排队/安置