CAtlList::AddHead
更新 : 2007 年 11 月
リストの先頭に要素を追加します。
POSITION AddHead( );
POSITION AddHead(
INARGTYPE element
);
パラメータ
- element
新しい要素。
戻り値
新しく追加された要素の位置を返します。
解説
1 番目の形式を使用した場合は、コピー コンストラクタではなく既定のコンストラクタを使用して、空の要素が作成されます。
使用例
// 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);
必要条件
ヘッダー : atlcoll.h