Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
CObject*&GetTail();
CObject*GetTail()const;
Return Value
See the return value description for GetHead.
Remarks
Gets the CObject pointer that represents the tail element of this list.
You must ensure that the list is not empty before calling GetTail. If the list is empty, then the Debug version of the Microsoft Foundation Class Library asserts. Use IsEmpty to verify that the list contains elements.
Example
See CObList::CObList for a listing of the CAge class.
CObList list;
list.AddHead( new CAge( 21 ) );
list.AddHead( new CAge( 40 ) ); // List now contains (40, 21).
ASSERT( *(CAge*) list.GetTail() == CAge( 21 ) );
CObList Overview | Class Members | Hierarchy Chart
See Also CObList::AddTail, CObList::AddHead, CObList::RemoveHead, CObList::GetHead