index::operator[] 運算子
傳回索引元件做為指定的位置。
int operator[] (
unsigned _Index
) const restrict(amp,cpu);
int& operator[] (
unsigned _Index
) restrict(amp,cpu);
參數
- _Index
從 0 到 rank 減 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
**命名空間:**並行