共用方式為


index::operator[] 運算子

傳回位於指定位置的索引元件。

int operator[] (
   unsigned _Index
) const restrict(amp,cpu);

int& operator[] (
   unsigned _Index
) restrict(amp,cpu);

參數

  • _Index
    從 0 到順位減 1 之間的整數。

傳回值

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

備註

下一個範例會顯示索引的元件值。

// Prints 1 2 3.
concurrency::index<3> idx(1, 2, 3);
std::cout << idx[0] << "\n";
std::cout << idx[1] << "\n";
std::cout << idx[2] << "\n";

需求

**標頭:**amp.h

**命名空間:**並行

請參閱

參考

index 類別