CSimpleArray::operator
從陣列中擷取項目。
T& operator[](
int nIndex
);
參數
- nIndex
項目的索引。
傳回值
傳回 nIndex參考的陣列元素。
範例
// Create an array and display its contents
CSimpleArray<int> iMySampleArray;
for (int i = 0; i < 10; i++)
iMySampleArray.Add(i);
for (int i = 0; i < iMySampleArray.GetSize(); i++)
_tprintf_s(_T("Array index %d contains %d\n"), i, iMySampleArray[i]);
需求
Header: atlsimpcoll.h