CList::FindIndex

使用 nIndex 的值作为索引到列表中。

POSITION FindIndex(
   INT_PTR nIndex 
) const;

参数

  • nIndex
    将找到的列表元素的从零开始的索引。

返回值

可以为迭代或对象指针检索使用的 POSITION 值; NULL,如果 nIndex 为负或过大。

备注

启动顺序扫描列表中的前面,停止在 第n个元素。

示例

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

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

// Verify the first element (index 0).
ASSERT(CString(_T("XYZ")) == myList.GetAt(myList.FindIndex(0)));

// Verify the third element (index 2).
ASSERT(CString(_T("123")) == myList.GetAt(myList.FindIndex(2)));      

要求

Header: afxtempl.h

请参见

参考

CList选件类

层次结构图

CObList::Find

CObList::GetNext

CObList::GetPrev