1、onok()或oncancel()//
只對視窗程式有用
2、postquitmessage(0);//最常用
3、exitprocess(0);//強制結束,注意防止記憶體洩漏4、
void cmainframe::onclose() }
如: void ccsview::onshutdown() //自定義}
clgndlg lgndlg;
if(idok==lgndlg.domodal())
else
csingledoctemplate* pdoctemplate;
pdoctemplate = new csingledoctemplate(
idr_mainframe,
runtime_class(ctestbdoc),
runtime_class(cmainframe), // main sdi frame window
runtime_class(ctestbview));
adddoctemplate(pdoctemplate);
// parse command line for standard shell commands, dde, file open
ccommandlineinfo cmdinfo;
parsecommandline(cmdinfo);
// dispatch commands specified on the command line
if (!processshellcommand(cmdinfo))
return false;
// the one and only window has been initialized, so show and update it.
m_pmainwnd->showwindow(sw_show);
m_pmainwnd->updatewindow();
return true;
}
c 如何退出程式
一些操作可以關注 gc.collect 另 1,將主線程設定為後台程序。方法是將主線程的isbackground true。據說,這樣在關閉主程式時後關閉主線程,並關閉所有的執行緒。2,有人列出了c 程式退出的幾種方法 2 system.environment.exit 0 無論在主線程或其它執行緒...
python退出程式 Python程式退出方式小結
對於如何結束乙個python程式或者用python操作去結束乙個程序等,python本身給出了好幾種方法,而這些方式也存在著一些區別,對相關的幾種方法看了並實踐了下,同時也記錄下。參考 python 核心程式設計 第二版 中文高畫質 1.sys.exit 執行該語句會直接退出程式,這也是經常使用的方...
正確退出activity 如何退出Activity
當然,也可以用killprocess 和system.exit 這樣的方法。但是,對於多activity的應用來說,在開啟多個activity後,如果想在最後開啟的activity直接退出,上邊的方法都是沒有用的,因為上邊的方法都是結束乙個activity而已。當然,網上也有人說可以。就好像有人問,...