Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
CObList::GetTailPosition
CObList                                     Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  POSITION GetTailPosition() const;
 
  Remarks
 
  Gets the position of the tail element of this list; NULL if the list is
  empty.
 
  Return Value
 
  A POSITION value that can be used for iteration or object pointer
  retrieval; NULL if the list is empty.
 
  Example
 
  CObList list;
  POSITION pos;
 
  list.AddHead( new CAge( 21 ) );
  list.AddHead( new CAge( 40 ) ); // List now contains (40, 21)
  if( ( pos = list.GetTailPosition() ) != NULL )
  {
      ASSERT( *(CAge*) list.GetAt( pos ) == CAge( 21 ) );
  }
 
 
  See Also
 
  CObList::GetHeadPosition, CObList::GetTail
 
 
                                     -♦-