CObArray::GetCount
配列要素数を返します。
INT_PTR GetCount( ) const;
戻り値
配列内の項目の数。
解説
配列の要素数を取得するときにこのメソッドを呼び出します。インデックスがゼロから始まるため、サイズが最大のインデックスより 1 です。
次の表は CObArray::GetCountに似ている他のメンバー関数を示します。
Class |
メンバー関数 |
---|---|
INT_PTR GetCount( ) const; |
|
INT_PTR GetCount( ) const; |
|
INT_PTR GetCount( ) const; |
|
INT_PTR GetCount( ) const; |
|
INT_PTR GetCount( ) const; |
|
INT_PTR GetCount( ) 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.GetCount(); i++)
{
CAge*& pAge = (CAge*&) myArray.ElementAt(i);
delete pAge;
pAge = new CAge(100 + i);
}
必要条件
Header: afxcoll.h