cstringlist是cstring鍊錶,在mfc程式設計中stl之外的另一選擇,用起來更加簡潔.
插入資料:addtail();addhead()
刪除資料:removeall();removeat();removehead();removetail()
取得元素個數:getcount()
取得某個元素值:getat(cstringlist.findindex(index))//index為整數
取得頭尾元素:gethead() ;gettail(),
遍歷最好用上面的方式,不要用position變數,用findindex可以了。
初始化:
cstringlist listfilename;
listfilename.removeall();
新增操作:
listfilename.addtail(szfullpathname);
遍歷操作:
position rpos;
rpos = listfilename.getheadposition();
while (rpos != null)
CStringList不完全用法
cstringlist是cstring鍊錶,在mfc程式設計中stl之外的另一選擇,用起來更加簡潔.插入資料 addtail addhead 刪除資料 removeall removeat removehead removetail 取得元素個數 getcount 取得某個元素值 getat cst...
CStringList 和各給陣列的用法
mfc提供集合類 collect 專門負責資料物件的儲存和管理,mfc的集合類分為三類,分別用於處理三類不同性質的資料結構 表 list,類似於資料結構的雙鏈表 陣列 array 和對映 map,具有類似字典的功能 一,陣列使用心得 原型 template class type,class arg ...
static用法總結
static static關鍵字是c,c 中都存在的關鍵字,它主要有三種使用方式,其中前兩種只指在c語言中使用,第三種在c 中使用 c,c 中具體細微操作不盡相同,本文以c 為準 1 區域性靜態變數 2 外部靜態變數 函式 3 靜態資料成員 成員函式 下面就這三種使用方式及注意事項分別說明 一 區域...