list::front
返回对列表中第一个元素的引用。
reference front( ); const_reference front( ) const;
返回值
如果列表为空,返回的结果则不确定。
备注
如果将 front 的返回值分配给 const_reference,则无法修改列表对象。 如果 front 的返回值赋给了 reference,则无法修改列表对象。
编译 _SECURE_SCL 1 时,如果试图访问空列表中的元素,将发生运行时错误。 有关更多信息,请参见经过检查的迭代器。
示例
// list_front.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main() {
using namespace std;
list <int> c1;
c1.push_back( 10 );
int& i = c1.front();
const int& ii = c1.front();
cout << "The first integer of c1 is " << i << endl;
i++;
cout << "The first integer of c1 is " << ii << endl;
}
要求
标头:<list>
命名空间: std