CAtlArray::GetData
呼叫這個方法會傳回指標陣列中的第一個項目。
E* GetData( ) throw( );
const E* GetData( ) const throw( );
傳回值
傳回指向儲存在第一個項目的記憶體位置陣列中。 如果不可用,則傳回 NULL。
範例
// Define an array of integers
CAtlArray<int> MyArray;
// Define a pointer
int* pData;
// Allocate enough space for 32 elements
// with buffer increase to be calculated
// automatically
MyArray.SetCount(32, -1);
// Set the pointer to the first element
pData = MyArray.GetData();
// Set array values directly
for (int j = 0; j < 32; j++, pData++)
{
*pData = j * 10;
}
需求
Header: atlcoll.h