MFC --->六大仿真技术!
1.mfc 程序初始化过程
分析:
CObject
|
|----CCmdTarget
|
|----CWinThread
| |
| |----CWinApp
| |
| |----CMyWinApp
|----CDocument
| |
| |----CMyDoc
|
|----CWnd
|
|----CFrameWnd
| |
| |----CMyFrameWnd
|
|----CView
|
|--CMyView
这是结果:
CObject Constructor
CCmdTarget Constructor
CWinThread Constructor
CWinApp Constructor
CMyWinApp Constructor
CMyWinApp Destructor
CWinApp Destructor
CWinThread Destructor
CCmdTarget Destructor
CObject Destructor
废话少说上代码:
mfc.cpp
#include "my.h" // it should be mfc.h, but for CMyWinApp definition, so...
extern CMyWinApp theApp;
CWinApp* AfxGetApp()
{
return theApp.m_pCurrentWinApp;
}
mfc.h
#include <iostream.h>
class CObject
{
public:
CObject::CObject() {
cout << "CObject Constructor /n";
}
CObject::~CObject() {
cout << "CObject Destructor /n";
}
};
class CCmdTarget : public CObject
{
public:
CCmdTarget::CCmdTarget() {
cout << "CCmdTarget Constructor /n";
}
CCmdTarget::~CCmdTarget() {
cout << "CCmdTarget Destructor /n";
}
};
class CWinThread : public CCmdTarget
{
public:
CWinThread::CWinThread() {
cout << "CWinThread Constructor /n";
}
CWinThread::~CWinThread() {
cout << "CWinThread Destructor /n";
}
};
class CWinApp : public CWinThread
{
public:
CWinApp* m_pCurrentWinApp;
public:
CWinApp::CWinApp() {
cout << "CWinApp Constructor /n";
m_pCurrentWinApp = this;
}
CWinApp::~CWinApp() {
cout << "CWinApp Destructor /n";
}
};
class CDocument : public CCmdTarget
{
public:
CDocument::CDocument() {
cout << "CDocument Constructor /n";
}
CDocument::~CDocument() {
cout << "CDocument Destructor /n";
}
};
class CWnd : public CCmdTarget
{
public:
CWnd::CWnd() {
cout << "CWnd Constructor /n";
}
CWnd::~CWnd() {
cout << "CWnd Destructor /n";
}
};
class CFrameWnd : public CWnd
{
public:
CFrameWnd::CFrameWnd() {
cout << "CFrameWnd Constructor /n";
}
CFrameWnd::~CFrameWnd() {
cout << "CFrameWnd Destructor /n";
}
};
class CView : public CWnd
{
public:
CView::CView() {
cout << "CView Constructor /n";
}
CView::~CView() {
cout << "CView Destructor /n";
}
};
// global function
CWinApp* AfxGetApp();
my.cpp
#include "my.h"
CMyWinApp theApp;
//------------------------------------------------------------------
// main
//------------------------------------------------------------------
void main()
{
CWinApp* pApp = AfxGetApp();
}
//------------------------------------------------------------------
my.h
#include <iostream.h>
#include "mfc.h"
class CMyWinApp : public CWinApp
{
public:
CMyWinApp::CMyWinApp() {
cout << "CMyWinApp Constructor /n";
}
CMyWinApp::~CMyWinApp() {
cout << "CMyWinApp Destructor /n";
}
};
class CMyFrameWnd : public CFrameWnd
{
public:
CMyFrameWnd() {
cout << "CMyFrameWnd Constructor /n";
}
~CMyFrameWnd() {
cout << "CMyFrameWnd Destructor /n";
}
};