CObList::GetSize
傳回清單中的項目數目。
INT_PTR GetSize( ) const;
傳回值
清單中的項目數。
備註
呼叫這個方法會擷取項目數目的清單。
下表顯示類似 CObList::GetSize的其他成員函式。
類別 |
成員函式 |
---|---|
INT_PTR GetSize const (); |
|
INT_PTR GetSize const (); |
範例
提供 CAge 類別的目錄參閱 CObList::CObList 。
CObList list;
list.AddHead(new CAge(21));
list.AddHead(new CAge(40)); // List now contains (40, 21).
ASSERT(list.GetSize() == 2);
需求
Header: afxcoll.h