CSimpleArray::operator
Ruft ein Element aus dem Array ab.
Syntax
T& operator[](
int nIndex
);
Parameter
- nIndex
Der Elementindex.
Rückgabewert
Gibt das Element des Arrays zurück, das von nIndex verwiesen wird.
Beispiel
// 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]);
Anforderungen
Header: atlsimpcoll.h