CObArray::GetSize
配列のサイズを返します。
INT_PTR GetSize( ) const;
解説
インデックスがゼロから始まるため、サイズが最大のインデックスより 1 です。
次の表は CObArray::GetSizeに似ている他のメンバー関数を示します。
Class |
メンバー関数 |
---|---|
INT_PTR GetSize( ) const; |
|
INT_PTR GetSize( ) const; |
|
INT_PTR GetSize( ) const; |
|
INT_PTR GetSize( ) const; |
|
INT_PTR GetSize( ) const; |
|
INT_PTR GetSize( ) const; |
使用例
すべてのコレクションの例で使用されている CAge のクラスのリストについては、CObList::CObList を参照してください。
CObArray myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(new CAge(i));
// Add 100 to all the elements of the array.
for (int i = 0; i < myArray.GetSize(); i++)
{
CAge*& pAge = (CAge*&) myArray.ElementAt(i);
delete pAge;
pAge = new CAge(100+i);
}
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << _T("myArray: ") << &myArray << _T("\n");
#endif
必要条件
Header: afxcoll.h