다음을 통해 공유


CList::AddHead

머리의이 목록에 새 요소 또는 요소 목록에 추가합니다.

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

매개 변수

  • ARG_TYPE
    템플릿 매개 변수 (참조 될 수 있습니다) 목록 요소의 형식을 지정 합니다.

  • newElement
    새 요소입니다.

  • pNewList
    다른 포인터 CList 목록.요소에서 pNewList 이 목록에 추가 됩니다.

반환 값

반환 된 첫 번째 버전은 위치 새로 삽입된 한 요소의 값입니다.

설명

목록 작업 전에 비워 둘 수 있습니다.

예제

// 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);      

요구 사항

헤더: afxtempl.h

참고 항목

참조

CList 클래스

계층 구조 차트

CList::GetHead

CList::RemoveHead