Aracılığıyla paylaş


CList::AddHead

Bu liste kafa için yeni bir öğe veya öğeler listesini ekler.

POSITION AddHead(
   ARG_TYPE newElement 
);
void AddHead(
   CList* pNewList 
);

Parametreler

  • ARG_TYPE
    Şablon liste öğesine (başvuru olabilir) belirten bir parametre.

  • newElement
    Yeni öğe.

  • pNewList
    İşaretçiyi başka bir CList listesi.Öğeleri pNewList bu listeye eklenir.

Dönüş Değeri

İlk sürümü döndürür konumu yeni eklenen öğenin değeri.

Notlar

Liste operasyondan önce boş olabilir.

Örnek

// Declarations of the variables used in the example
CList<CString,CString&> myList;
CList<CString,CString&> myList2;

// There are two versions of CList::AddHead: one adds a single
// element to the front of the list, the second adds another list
// to the front. 

// This adds the string "ABC" to the front of myList.
// myList is a list of CStrings (ie defined as CList<CString,CString&>).
myList.AddHead(CString(_T("ABC")));

// This adds the elements of myList2 to the front of myList.
myList.AddHead(&myList2);      

Gereksinimler

Başlık: afxtempl.h

Ayrıca bkz.

Başvuru

CList sınıfı

Hiyerarşi grafik

CList::GetHead

CList::RemoveHead