自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

原创 MFC message route (Part TWO)

消息的流动直线上溯的消息LRESULT CALLBACKAfxWndProc(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam){ // … // all other messages route through message map CWnd* pWnd = CWnd::FromHandlePermanent(hWnd); // … retu

2005-03-04 08:38:00 768

原创 MFC message route (Part ONE)

                                                                  关于MFC中的消息流动MFC中消息分为3类:WM_COMMAND:所有的UI组件和加速键都会产生这种消息,所有派生于CCmdTarget的类都有能力处理该消息标准消息:除WM_COMMAND之外的WM_xx消息都是标准消息,派生于CWnd的类都有能力处理该消息控件通知

2005-03-04 08:37:00 693

原创 关于MFC的消息映射表

                                                                关于MFC中的消息映射表用于封装消息的结构AFX_MSGMAP_ENTRYstruct AFX_MSGMAP_ENTRY{ UINT nMessage;   // windows message UINT nCode;      // control code or WM

2005-03-04 08:32:00 1109

原创 关于MFC中的动态对象创建

                                                           关于MFC中的对象动态创建在MFC中,对象的动态创建也要依赖于RTTI所建立起来的类别型录,和动态创建有关的CRuntimeClass成员有两个:CObject* (PASCAL* m_pfnCreateObject)(); // 指向用于创建对象的函数CObject* Creat

2005-03-04 08:30:00 825

原创 关于MFC中的RTTI

                                                                       关于MFC中的RTTI在MFC中,RTTI是依靠为彼此有继承关系的类建立一个记录其类型的链表来实现的,和RTTI有关的CRuntimeClass成员有4个:            LPCSTR m_lpszClassName;               

2005-03-04 08:28:00 866

Compiler Design in C

This document is a list of typos and corrections that need to be made to Compiler Design in C, Allen Holub, 1990 (as of September 11, 1997). The corrections marked ‘‘Disk only’’ represent changes made to the files on the distribution disk that either don’t affect the code in any significant way or are too big to insert into the book. All these will eventually be incorporated into the second edition, if there is one, but they won’t be put into subsequent printings of the first edition.

2008-11-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除