转载:
http://www.artima.com/cppsource/pure_virtual.htmlWhen you construct an instance of a derived class, what happens, exactly? If the class has a
vtbl, the process goes something like the following:
Step 1: Construct the top-level base part:.
- Make the instance point to the base class's vtbl.
- Construct the base class instance member variables.
- Execute the body of the base class constructor.
Step 2: Construct the derived part(s) (recursively):
- Make the instance point to the derived class's vtbl.
- Construct the derived class instance member variables.
- Execute the body of the derived class constructor.
Destruction happens in reverse order, something like this:
Step 1: Destruct the derived part:
- (The instance already points to the derived class's vtbl.)
- Execute the body of the derived class destructor.
- Destruct the derived class instance member variables.
Step 2: Destruct the base part(s) (recursively):
- Make the instance point to the base class's vtbl.
- Execute the body of the base class destructor.
- Destruct the base class instance member variables.
posted @
2010-08-16 18:57 Uniker 阅读(1408) |
评论 (0) |
编辑 收藏
问题描述:在编译的时候出现__none_rtti_object异常
解决方法:
编译器开启支持运行时刻识别/GR,/GR(启用运行时类型信息)
Vs2003 如何打开C++的RTTI机制
说明:此选项 (/GR) 添加代码以便在运行时检查对象类型。当指定此选项时,编译器定义 _CPPRTTI 预处理器宏。默认情况下,此选项被清除 (/GR–)。
在 Visual Studio 开发环境中设置此编译器选项
1. 打开此项目的“属性页”对话框。
2. 单击“C/C++”文件夹。
3. 单击“语言”属性页。
4. 修改“启用运行时类型信息”属性。
posted @
2010-06-21 14:45 Uniker 阅读(1097) |
评论 (0) |
编辑 收藏
终于有了自己的技术博客了,以往写代码的时候总是有一些问题解决了就没有记录下来,后来重新碰到此类问题又得重头开始解决,很是恼火。希望在以后的开发中能够将所学、所感能够记录于此。
同时希望能够与大家同进步
posted @
2010-03-31 11:15 Uniker 阅读(176) |
评论 (0) |
编辑 收藏