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