CList::RemoveHead
要素をリストの先頭から削除し、そのポインターを返します。
TYPE RemoveHead( );
パラメーター
- type
リスト内の要素の型を指定するテンプレート パラメーター。
戻り値
リストの先頭の要素。
解説
リストが RemoveHeadを呼び出す前に、空でないことを確認する必要があります。リストが空の場合は、Microsoft Foundation Class ライブラリの assert のデバッグ バージョン。リストに要素が含まれていることを確認するには IsEmpty を使用します。
使用例
// 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.GetCount() == 1) &&
(CString(_T("ABC")) == myList.GetHead()));
必要条件
ヘッダー: afxtempl.h