共用方式為


CList::RemoveTail

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

TYPE RemoveTail( );

參數

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

傳回值

在清單的尾端的項目。

備註

您必須確定清單是在呼叫 RemoveTail之前不是空的。 如果清單是空的,則 MFC 程式庫的偵錯版本的判斷提示。 使用 IsEmpty 確認清單包含項目。

範例

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

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

// Remove the tail element and verify the list. 
// NOTE: once the tail is removed, the number of 
// elements in the list will be one.
CString strTail = myList.RemoveTail();
ASSERT((CString(_T("123")) == strTail) && (myList.GetCount() == 1) && 
   (CString(_T("ABC")) == myList.GetTail()));      

需求

Header: afxtempl.h

請參閱

參考

CList 類別

階層架構圖表

CList::GetTail

CList::AddTail