list::reference

提供对存储在列表中的元素的引用的类型。

typedef typename Allocator::reference reference;

示例

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

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

   int &i = c1.front( );
   int &j = c1.back( );
   cout << "The first element is " << i << endl;
   cout << "The second element is " << j << endl;
}
  

要求

标头:<list>

命名空间: std

请参见

参考

list 类

标准模板库