共用方式為


deque::operator[]

傳回對雙向佇列項目的參考在指定的位置。

reference operator[]( 
   size_type _Pos 
); 
const_reference operator[]( 
   size_type _Pos 
) const;

參數

  • _Pos
    雙向佇列項目的位置參考。

傳回值

對在引數中指定的元素的參考。 如果指定的位置大於雙向佇列的大小,則結果會是未定義。

備註

如果傳回值 operator[]const_reference,無法修改雙向佇列物件。 如果 operator[] 的傳回值指派給 reference,可以修改雙向佇列物件。

在以 _SECURE_SCL 1 時,執行時會發生錯誤,如果您嘗試存取正在雙向佇列範圍以外的項目。如需詳細資訊,請參閱已檢查的迭代器

範例

// deque_op_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 );
   cout << "The first integer of c1 is " << c1[0] << endl;
   int& i = c1[1];
   cout << "The second integer of c1 is " << i << endl;
   
}
  

需求

標頭: <deque>

命名空間: std

請參閱

參考

deque 類別

deque::operator[] 和 deque::at

標準樣板程式庫