CObArray::GetCount
更新 : 2007 年 11 月
配列要素の数を返します。
INT_PTR GetCount( ) const;
戻り値
配列内の項目の数を返します。
解説
配列の要素の数を取得します。インデックスは 0 から始まるので、サイズはインデックスの最大値よりも 1 大きい値になります。
CObArray::GetCount に類似している他のメンバ関数を以下に示します。
クラス |
メンバ関数 |
---|---|
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);
}
必要条件
ヘッダー : afxcoll.h