STL的心得(4 運用(MFC)

2021-09-05 13:46:30 字數 618 閱讀 8433

用mfc寫乙個簡單的畫圖程式(恐怕這個應該是大家更加注意的)

在這裡只貼出部分**:

下面源**,可以直接執行(vc6 mfc)(關於其整個工程檔案可以到www.confach.533.net

去download),如果你找不到,可以直接按上面的****與我mail,我會盡快給你發過去,大家一起學習)

void cstlmfctestview::onlbuttondown(uint nflags, cpoint point)

mpointvector.push_back(point);

cview::onlbuttondown(nflags, point);

} void cstlmfctestview::onlbuttonup(uint nflags, cpoint point)

void cstlmfctestview::onmousemove(uint nflags, cpoint point)

if(mpointvector.size()!=0)

mpointvector.push_back(point);

cview::onmousemove(nflags, point);

}

STL 中 remove 的運用

by a code rabbit 今天在看別人的解題報告時,發現這麼一行 remove pack 0 pack strlen pack 0 刪除行中的空格頓時想起前幾天寫的乙個函式 void filterspaces char expression new,char expression pos e...

STL運用 神奇的數字

我的ac include includeusing namespace std include includestring string sort string a return a bool ok string a,string b int main cout主要是幾個c 11自帶的函式,很實用!...

STL 容器的運用場合

預設情況下應該使用 vector。vector的內部結構最簡單,並允許隨機訪問。若要經常在列表的頭部和尾部安插和移除元素,或者希望元素溢位的時候,容器能夠自動縮減記憶體,應該採用deque。若要經常在容器中部進行元素的插入 刪除 移動,應使用list。若經常需要根據某個準則來搜尋元素,應使用 set...