Aracılığıyla paylaş


list::const_reference

Başvuru sağlayan bir tür bir const okumak ve gerçekleştirmek için bir listede depolanan öğe const işlemleri.

typedef typename Allocator::const_reference const_reference;

Notlar

Bir tür const_reference bir öğenin değerini değiştirmek için kullanılamaz.

Örnek

// list_const_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 );

   const list <int> c2 = c1;
   const int &i = c2.front( );
   const int &j = c2.back( );
   cout << "The first element is " << i << endl;
   cout << "The second element is " << j << endl;
   
   // The following line would cause an error because c2 is const
   // c2.push_back( 30 );
}
  

Gereksinimler

Başlık: <list>

Namespace: std

Ayrıca bkz.

Başvuru

list Class

Standart Şablon Kütüphanesi