std::stack<T,Container>::pop
From cppreference.com
C++
Containers library
| Sequence | ||||
|
(C++11)
|
||||
|
(C++26)
|
||||
|
(C++11)
|
||||
| Associative | ||||
| Unordered associative | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Adaptors | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
| Views | ||||
|
(C++20)
|
||||
|
(C++23)
|
||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
std::stack
| Member functions | ||||
| Element access | ||||
| Capacity | ||||
| Modifiers | ||||
|
(C++23)
|
||||
|
(C++11)
|
||||
stack::pop | ||||
|
(C++11)
|
||||
| Non-member functions | ||||
|
(C++11)
|
||||
| Helper classes | ||||
|
(C++11)
|
||||
|
(C++23)
|
||||
| Deduction guides(C++17) |
void pop(); |
||
Removes the top element from the stack. Effectively calls c.pop_back().
Parameters
(none)
Return value
(none)
Complexity
Equal to the complexity of Container::pop_back.
Example
See also
|
(C++11)
|
constructs element in-place at the top (public member function) |
| inserts element at the top (public member function) |
|
| accesses the top element (public member function) |