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());
必要条件
ヘッダー: afxtempl.h