共用方式為


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

請參閱

參考

list 類別

list::back 和 list::front

標準樣板程式庫