次の方法で共有


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

参照

関連項目

CList クラス

階層図

CList::RemoveAt