最近学习vc++ 6.0

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";
                  }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值