次の方法で共有


CList::GetTailPosition

このリストの末尾要素の位置を取得します; リストが空の場合 null

POSITION GetTailPosition( ) const;

戻り値

イテレーションまたはオブジェクト ポインター検索に使用できる値の POSITION ; リストが空の場合 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));      

必要条件

ヘッダー: afxtempl.h

参照

関連項目

CList クラス

階層図

CList::GetHeadPosition

CList::GetTail