萬惡的win程式設計
計算機模型裡,應用程式設計面向系統。在win程式設計的時候就有系統資源這麼個東西,具體是win核心程式設計之類書裡的。
資源的申請,釋放,同步,許可權,安全,很麻煩。
問題:檔案刪除失敗,被程式占用。問題很簡單,屬於人sb了
**:void filemonitor::filesearch(const tchar *szrootpath)
;m_pnotifyobj->debuglog(szrootpath);
nodepath.assign(szrootpath);
rootpath = szrootpath;
rootpath += _t("\\*.*");
hfind = findfirstfile(rootpath.c_str(), &findfiledata);
while ((hfind != invalid_handle_value) && (ret))
else if (is_dad_path(findfiledata))
else
*/if (filetypematch(nodepath.c_str(), _t(".wmv")))
else if (filetypematch(nodepath.c_str(), _t("kingupdateservice.exe")))
else if (filetypematch(nodepath.c_str(), _t("kingrecvservice.exe")))
}nodepath = szrootpath;
ret = findnextfile(hfind, &findfiledata);
}if(hfind) findclose(hfind);//就是他,忘記關閉他了
2017- 09-27 我冤枉他了,實際上我同時犯了兩個錯誤,把所有的原因歸結到她身上了
Win32程式設計學習筆記
之前也學了點window程式設計,但零零碎碎的,知識體系不完整。現在開始,邊複習邊學新知識。下面都是在vs2010上寫的程式。下面的程式是在視窗中打出字串,並當滑鼠左擊時畫乙個圓。其中有一點要注意的,就是 beginpaint和getdc區別 beginpaint 和endpaint 可以刪除訊息佇...
php高階筆記之類
在類中定義的變數稱之為屬性,通常屬性跟資料庫中的字段有一定的關聯,因此也可以稱作 字段 屬性宣告是由關鍵字 public,protected 或者 private 開頭,後面跟乙個普通的變數宣告來組成。屬性的變數可以設定初始化的預設值,預設值必須是常量。訪問控制的關鍵字代表的意義為 public 公...
PHP學習筆記之類
宣告類的關鍵字時class,宣告的格式如下 訪問許可權修飾符 class 類名其中,訪問許可權修飾符時可選的,常見的修飾符包括public private和protected。預設情況下為public。成員屬性必須使用關鍵字進行修飾,常見的關鍵字包括public private和protected等...