共用方式為


CList::RemoveAll

從這份清單中移除所有項目並釋放相關聯的記憶體。

void RemoveAll( );

備註

如果清單已經是空的,並不會產生錯誤

範例

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

// Add three elements to the list.
myList.AddTail(CString(_T("XYZ")));
myList.AddTail(CString(_T("ABC")));
myList.AddTail(CString(_T("123")));

// Remove all of the elements in the list.
myList.RemoveAll();

// Verify the list is empty.
ASSERT(myList.IsEmpty());      

需求

Header: afxtempl.h

請參閱

參考

CList 類別

階層架構圖表

CList::RemoveAt