public member function
<stack>
std::stack::topvalue_type& top();const value_type& top() const;
reference top();const_reference top() const;
Access next element
Returns a reference to the top element in the stack.Since stacks are last-in first-out containers, the top element is the last element inserted into the stack.
This member function effectively calls member back of the underlying container object.
Member type value_type is the type of the elements in the container (defined as an alias of the first class template parameter, T).
Member types reference and const_reference are aliases of the underlying container's types with the same name.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// stack::top
#include <iostream> // std::cout
#include <stack> // std::stack
int main ()
{
std::stack<int> mystack;
mystack.push(10);
mystack.push(20);
mystack.top() -= 5;
std::cout << "mystack.top() is now " << mystack.top() << '\n';
return 0;
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4