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
命名空间: 并发