list::back

返回对列表中最后一个元素的引用。

reference back( );  const_reference back( ) const;

返回值

列表的最后一个元素。 如果列表为空,则返回值不确定。

备注

如果 back 的返回值赋给了 const_reference,则不能修改列表对象。 如果 back 的返回值赋给了 reference,则可以修改列表对象。

编译 _SECURE_SCL 1 时,如果试图访问空列表中的元素,将发生运行时错误。 有关更多信息,请参见经过检查的迭代器

示例

// list_back.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std;
   list <int> c1;
   
   c1.push_back( 10 );
   c1.push_back( 11 );

   int& i = c1.back( );
   const int& ii = c1.front( );

   cout << "The last integer of c1 is " << i << endl;
   i--;
   cout << "The next-to-last integer of c1 is " << ii << endl;
}
  

要求

标头:<list>

命名空间: std

请参见

参考

list 类

标准模板库