次の方法で共有


CAtlList::AddHead

リストの先頭に要素を追加するには、このメソッドを呼び出します。

POSITION AddHead( ); 
POSITION AddHead(
   INARGTYPE element 
);

パラメーター

  • element
    新しい要素。

戻り値

新しく追加された要素の位置を返します。

解説

最初のバージョンが使用されている場合、空の要素はコピー コンストラクターはなく、既定のコンストラクターを使用して作成されます。

使用例

// Declare a list of integers
CAtlList<int> myList;

// Add some elements, each to the head of the list.
// As each new element is added, the previous head is
// pushed down the list.
myList.AddHead(42);
myList.AddHead(49);

// Confirm the value currently at the head of the list
ATLASSERT(myList.GetHead() == 49);

// Confirm the value currently at the tail of the list
ATLASSERT(myList.GetTail() == 42);   

必要条件

Header: atlcoll.h

参照

関連項目

CAtlList クラス

CAtlList::AddHeadList

CAtlList::AddTail