1. 程式人生 > >VC MFC中CList成員的使用

VC MFC中CList成員的使用

Adds an element (or all the elements in another list) to the head of the list (makes a new head).

在連結串列頭處插入新資料,連結串列資料個數加1,返回新的連結串列頭位置(POSITION);

例子:

CList<int,int> myList;

for(int i=0;i<10000;i++) { myList.AddTail(int(i)); }//存入資料

POSITION pos=myList.AddHead(int(314));//連結串列有了一個新的頭資料:314;同時連結串列個數變為10001;pos為新的頭的位置;