CAtlList::GetHeadPosition
调用此方法来获取列表的开头的位置。
POSITION GetHeadPosition( ) const throw( );
返回值
返回位置值与元素对应于列表的开头。
备注
如果列表为空,则返回的值是NULL。
示例
// Define the integer list
CAtlList<int> myList;
int i;
// Populate the list
for (i = 0; i < 100; i++)
{
myList.AddTail(i);
}
// Get the starting position value
POSITION myPos = myList.GetHeadPosition();
// Iterate through the entire list
i = 0;
int j;
do {
j = myList.GetNext(myPos);
ATLASSERT(i == j);
i++;
} while (myPos != NULL);
要求
Header: atlcoll.h