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 Class

deque::operator[] 和 deque::at

标准模板库