CList::GetPrev
TYPE**&GetPrev(POSITION&rPosition);**
TYPEGetPrev(POSITION&rPosition)const;
Return Value
If the list is const, GetPrev returns a copy of the element at the head of the list. This allows the function to be used only on the right side of an assignment statement and protects the list from modification.
If the list is not const, GetPrev returns a reference to an element of the list. This allows the function to be used on either side of an assignment statement and thus allows the list entries to be modified.
Parameters
TYPE
Template parameter specifying the type of the elements in the list.
rPosition
A reference to a POSITION value returned by a previous GetPrev or other member function call.
Remarks
Gets the list element identified by rPosition, then sets rPosition to the POSITION value of the previous entry in the list. You can use GetPrev in a reverse iteration loop if you establish the initial position with a call to GetTailPosition or Find.
You must ensure that your POSITION value represents a valid position in the list. If it is invalid, then the Debug version of the Microsoft Foundation Class Library asserts.
If the retrieved element is the first in the list, then the new value of rPosition is set to NULL.
Example
// Define myList.
CList<CString,CString&> myList;
// Add two elements to the list.
myList.AddHead(CString("ABC"));
myList.AddHead(CString("123"));
// Dump the list elements to the debug window,
// in reverse order.
POSITION pos = myList.GetTailPosition();
for (int i=0;i < myList.GetCount();i++)
{
TRACE("%s\r\n", (LPCSTR) myList.GetPrev(pos));
}
CList Overview | Class Members | Hierarchy Chart
See Also CList::Find, CList::GetTailPosition, CList::GetHeadPosition, CList::GetNext, CList::GetHead