退出MFC應用程式的方法集

2021-08-20 06:27:50 字數 444 閱讀 8439

1、postquitmessage(0);//最常用

2、postmessage(wm_quit,0,0);//最常用

3、::sendmessage(afxgetmainwnd()->m_hwnd,wm_close,0,0);//最常用

::postmessage(afxgetmainwnd()->m_hwnd,wm_close,0,0);//最常用

4、exitprocess(0);//注意使用時先釋放分配的記憶體,以免造成記憶體洩露

exit(0) ;//正常終止程式; exit(非0)非正常終止程式

5、向主視窗傳送wm_close訊息       

sendmessage(wm_close); 

6、如果要在其它類關閉應用程式,則 

afxgetmainwnd->sendmessage(wm_close);

本文**:

退出MFC應用程式的方法總結

1 最常用 postquitmessage 0 2 最常用 postmessage wm quit,0,0 3 最常用 sendmessage afxgetmainwnd m hwnd,wm close,0,0 4 最常用 postmessage afxgetmainwnd m hwnd,wm cl...

MFC應用程式如何自動退出?

1。強行退出 handle hthread getcurrentthread terminatethread hthread,0 2。安全的退出 用cwnd postmessage uintmessage wparamwparam 0,lparamlparam 0 自定義乙個訊息和訊息響應函式 te...

應用程式退出解決方法

殺程序的方法 android.os.process.killprocess android.os.process.mypid system.exit 0 這種方法適用於應用的第乙個activity啟動,但其他的activity都沒有啟動的時候有效。否則會導致應用程式自動重啟。這種方法也不可取,因為這...