共用方式為


array::operator[] 運算子

傳回位在指定索引的項目。

value_type& operator[] (
   const index<_Rank>& _Index
) restrict(amp,cpu);

const value_type& operator[] (
   const index<_Rank>& _Index
) const restrict(amp,cpu);

typename details::_Projection_result_type<_Value_type,_Rank>::_Result_type operator[](
   int _I
) restrict(amp,cpu);

typename details::_Projection_result_type<_Value_type,_Rank>::_Const_result_type operator[](
   int _I
) const restrict(amp,cpu);

參數

  • _Index
    索引。

  • _I
    索引。

傳回值

位於指定索引位置的項目。

需求

**標頭:**amp.h

**命名空間:**並行

請參閱

參考

array 類別