CObList::InsertBefore
更新 : 2007 年 11 月
リスト内の指定した位置の要素の直前に要素を追加します。
POSITION InsertBefore(
POSITION position,
CObject* newElement
);
パラメータ
position
直前の GetNext、GetPrev、Find メンバ関数の呼び出しで返された POSITION 値。newElement
このリストに追加するオブジェクト ポインタ。
戻り値
反復処理やオブジェクト ポインタの取得のために使用する POSITION 値を返します。リストが空の場合は NULL を返します。
CObList::InsertBefore に類似している他のメンバ関数を以下に示します。
クラス |
メンバ関数 |
---|---|
POSITION InsertBefore( POSITIONposition, void*newElement ); |
|
POSITION InsertBefore( POSITIONposition, const CString&newElement ); POSITION InsertBefore( POSITIONposition, LPCTSTRnewElement ); |
使用例
CAge クラスのリストについては、「CObList::CObList」を参照してください。
CObList list;
POSITION pos1, pos2;
list.AddHead(new CAge(21));
list.AddHead(new CAge(40)); // List now contains (40, 21).
if ((pos1 = list.GetTailPosition()) != NULL)
{
pos2 = list.InsertBefore(pos1, new CAge(65));
}
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << _T("InsertBefore example: ") << &list << _T("\n");
#endif
このプログラムの実行結果は次のようになります。
InsertBefore example: A CObList with 3 elements
a CAge at $4AE2 40
a CAge at $4B02 65
a CAge at $49E6 21
必要条件
ヘッダー : afxcoll.h