命名空间
变体
操作

std::stack<T,Container>::top

来自 cppreference.com
< cpp‎ | 容器‎ | 堆栈
reference top();
const_reference top() const;

返回堆栈中顶层元素的引用。这是最近推送的元素。此元素将在调用 pop() 时被删除。实际上调用 c.back().

内容

[编辑] 参数

(无)

[编辑] 返回值

对最后一个元素的引用。

[编辑] 复杂度

常数。

[编辑] 示例

#include <iostream>
#include <stack>
 
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

[编辑] 另请参阅

将元素插入顶部
(公有成员函数) [编辑]
移除顶层元素
(公有成员函数) [编辑]