用VS2010编译的C++大作业出现了无法识别的外部符号BUG
1>------已启动生成:项目:gamep,配置:DebugWin32------1>main.obj:errorLNK2019:无法解析的外部符号"public:__...
1>------ 已启动生成: 项目: gamep, 配置: Debug Win32 ------
1>main.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall skill::skill(void)" (??0skill@@QAE@XZ),该符号在函数 "public: __thiscall role::role(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,int,int,int,int,int,int,int,int,int,int,class weapon * const,class medicine * const,class skill * const)" (??0role@@QAE@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HHHHHHHHHHQAVweapon@@QAVmedicine@@QAVskill@@@Z) 中被引用
1>main.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall medicine::medicine(void)" (??0medicine@@QAE@XZ),该符号在函数 "public: __thiscall role::role(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,int,int,int,int,int,int,int,int,int,int,class weapon * const,class medicine * const,class skill * const)" (??0role@@QAE@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HHHHHHHHHHQAVweapon@@QAVmedicine@@QAVskill@@@Z) 中被引用
1>main.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall weapon::weapon(void)" (??0weapon@@QAE@XZ),该符号在函数 "public: __thiscall role::role(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,int,int,int,int,int,int,int,int,int,int,class weapon * const,class medicine * const,class skill * const)" (??0role@@QAE@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HHHHHHHHHHQAVweapon@@QAVmedicine@@QAVskill@@@Z) 中被引用
1>C:\Users\ThinkPad\Desktop\gamep\Debug\gamep.exe : fatal error LNK1120: 3 个无法解析的外部命令
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ========== 展开
1>main.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall skill::skill(void)" (??0skill@@QAE@XZ),该符号在函数 "public: __thiscall role::role(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,int,int,int,int,int,int,int,int,int,int,class weapon * const,class medicine * const,class skill * const)" (??0role@@QAE@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HHHHHHHHHHQAVweapon@@QAVmedicine@@QAVskill@@@Z) 中被引用
1>main.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall medicine::medicine(void)" (??0medicine@@QAE@XZ),该符号在函数 "public: __thiscall role::role(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,int,int,int,int,int,int,int,int,int,int,class weapon * const,class medicine * const,class skill * const)" (??0role@@QAE@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HHHHHHHHHHQAVweapon@@QAVmedicine@@QAVskill@@@Z) 中被引用
1>main.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall weapon::weapon(void)" (??0weapon@@QAE@XZ),该符号在函数 "public: __thiscall role::role(int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,int,int,int,int,int,int,int,int,int,int,class weapon * const,class medicine * const,class skill * const)" (??0role@@QAE@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HHHHHHHHHHQAVweapon@@QAVmedicine@@QAVskill@@@Z) 中被引用
1>C:\Users\ThinkPad\Desktop\gamep\Debug\gamep.exe : fatal error LNK1120: 3 个无法解析的外部命令
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ========== 展开
2个回答
展开全部
出现 error LNK2019: 无法解析的外部符号,是你声明了函数,但是没有定义(实现)函数。
如:
void function();
但是后面内有具体定义这个函数,即没有函数体,link 程序连接时就产生这个错误。
如:
void function();
但是后面内有具体定义这个函数,即没有函数体,link 程序连接时就产生这个错误。
更多追问追答
追问
那 根据错误原因是 哪个函数啊? 为什么在C-free上就不会提示这个。
追答
skill::skill medicine::medicine weapon::weapon
查看一下工程文件列表,文件是不是都加入到工程中。C-free 我还不大熟悉,可能C-free 会自动将统一文件夹内的文件自动加入工程吧。
测试了一下,C-Free 声明函数,但是没有定义,只有没有使用,不报错,估计系统应该是忽略了这个只声明而没有定义的函数,反正没有使用,忽略没有什么问题,而 VS 则不能容忍这样的问题。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询