共用方式為


CList::RemoveHead

從清單中移除的項目並傳回指向它。

TYPE RemoveHead( );

參數

  • 型別
    指定項目之型別的樣板參數清單中。

傳回值

在上一個項目清單的開頭。

備註

您必須確定清單是在呼叫 RemoveHead之前不是空的。 如果清單是空的,則 MFC 程式庫的偵錯版本的判斷提示。 使用 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()));      

需求

Header: afxtempl.h

請參閱

參考

CList 類別

階層架構圖

CList::GetHead

CList::AddHead