GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::stack::top(3) C++ Standard Libary std::stack::top(3)

std::stack::top - std::stack::top


reference top();
const_reference top() const;


Returns reference to the top element in the stack. This is the most recently pushed
element. This element will be removed on a call to pop(). Effectively calls
c.back().


(none)


Reference to the last element


Constant

// Run this code


#include <stack>
#include <iostream>


void reportStackSize(const std::stack<int>& s)
{
std::cout << s.size() << " elements on stack\n";
}


void reportStackTop(const std::stack<int>& s)
{
// Leaves element on stack
std::cout << "Top element: " << s.top() << '\n';
}


int main()
{
std::stack<int> s;
s.push(2);
s.push(6);
s.push(51);


reportStackSize(s);
reportStackTop(s);


reportStackSize(s);
s.pop();


reportStackSize(s);
reportStackTop(s);
}


3 elements on stack
Top element: 51
3 elements on stack
2 elements on stack
Top element: 6


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

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.