关于【error C3646: 未知重写说明符】
可能的错误
在MSDN的官方网站中,Complier Error C3646的定义为unknown override specifier,并且其解释为The compiler found a token in the position where it expected to find an override specifier, but the token was not recognized by the compiler.
1.循环引用
在分离式编译中,我们往往习惯将不同的类或者函数分别写在不同的函数中,提高工作效率。但如果在使用时出现两个类分别在两个不同的文件中编写,并且相互引用,则会出现循环引用,引发此错误。
解决方案:避免互相引用,用替代方法完成参数定义
例子:
对话框"DataManager.h" 中 #include "MainFrm.h"
,数据的引用需要主窗口指针
主窗口"MainFrm.h" 中 #include "DataManager.h"
,为菜单项弹出对话框
此时会突然一堆错误
本来直接头文件添加成员 CDataManager m_DataManeger
即可完成对话框的弹出。
但此时为了避免头文件引用,使用指针完成这一需求
void CMainFrame::