共用方式為


CList::GetSize

傳回清單中的項目數目。

INT_PTR GetSize( ) const;

傳回值

清單中的項目數。

備註

呼叫這個方法會擷取項目數目的清單。 呼叫這個方法產生的結果和 CList::GetCount 方法相同。

範例

// Define myList.
CList<CString,CString&> myList;

// Add two elements to the list.
myList.AddHead(CString(_T("ABC")));
myList.AddHead(CString(_T("123")));

// Remove the head element and verify the list.
// NOTE: once the head is removed, the number of
// elements in the list will be one.
CString strHead = myList.RemoveHead();
ASSERT((CString(_T("123")) == strHead) && (myList.GetSize() == 1) && 
   (CString(_T("ABC")) == myList.GetHead()));      

需求

Header: afxtempl.h

請參閱

參考

CList 類別

階層架構圖

CList::GetCount