次の方法で共有


deque::const_reference

const 要素への参照を提供する型が const 要素の読み取りと操作実行のために deque に格納します。

typedef typename Allocator::const_reference const_reference;

解説

const_reference 型で要素の値を変更することはできません。

使用例

// deque_const_ref.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

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

   const deque <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 as c2 is const
   // c2.push_back( 30 );
}
  

必要条件

ヘッダー: <deque>

名前空間: std

参照

関連項目

deque クラス

標準テンプレート ライブラリ