CList::GetTailPosition
取得這個清單的尾端項目的位置, NULL ,如果清單是空的。
POSITION GetTailPosition( ) const;
傳回值
可以針對反覆項目或物件指標擷取使用的 位置 值; NULL ,如果清單是空的。
範例
// Define myList.
CList<CString,CString&> myList;
// Add an element to the end of the list.
myList.AddTail(CString(_T("ABC")));
// Verify the element at the end position
// is the one added.
POSITION pos = myList.GetTailPosition();
ASSERT(CString(_T("ABC")) == myList.GetAt(pos));
需求
Header: afxtempl.h