stack::top

返回对该元素的引用在堆栈顶部。

reference top( );
const_reference top( ) const;

返回值

对最后一个元素在容器的引用在堆栈顶部。

备注

堆栈必须非 Null 将成员函数。 堆栈的顶部是最近添加的元素占用的位置也是最后一个元素在容器的末尾。

如果 top 的返回值赋给 const_reference,无法修改对象堆。 如果 top 的返回值赋给 引用,可以修改对象堆。

示例

// stack_top.cpp
// compile with: /EHsc
#include <stack>
#include <iostream>

int main( )
{
   using namespace std;
   stack <int> s1;
   
   s1.push( 1 );
   s1.push( 2 );

   int& i = s1.top( );
   const int& ii = s1.top( );

   cout << "The top integer of the stack s1 is "
        << i << "." << endl;
   i--;
   cout << "The next integer down is "<< ii << "." << endl;
}
  

要求

页眉: <堆栈>

命名空间: std

请参见

参考

stack 类

stack::top and stack::empty

标准模板库