std::stack::emplace

std::stack::emplace

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

Pushes new element on top of the stack. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments as supplied to the function.

Effectively calls return c.emplace_back(std::forward<Args>(args)...);

Parameters

args - arguments to forward to the constructor of the element

Return value

(none) (until C++17)
A reference to the new element. (since C++17)

Complexity

Identical to the complexity of Container::emplace_back.

See also

inserts element at the top
(public member function)
removes the top element
(public member function)

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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部