CObArray::GetCount
배열 요소 개수를 반환 합니다.
INT_PTR GetCount( ) const;
반환 값
배열에서 항목의 수입니다.
설명
배열에 있는 요소의 개수를 검색 하려면이 메서드를 호출 합니다.인덱스는 0부터 시작 하므로 크기가 1 보다 큰 인덱스 보다 큰 경우
다음 표에서 다른 멤버와 비슷한 함수를 보여 줍니다. CObArray::GetCount.
클래스 |
멤버 함수 |
---|---|
INT_PTR GetCount () 상수; |
|
INT_PTR GetCount () 상수; |
|
INT_PTR GetCount () 상수; |
|
INT_PTR GetCount () 상수; |
|
INT_PTR GetCount () 상수; |
|
INT_PTR GetCount () 상수; |
예제
참조 하십시오 CObList::CObList 에 CAge 모든 컬렉션 예제에 사용 되는 클래스입니다.
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