当前位置: 代码迷 >> Ruby/Rails >> error LNK2019: 无法解析的外部符号 "public
  详细解决方案

error LNK2019: 无法解析的外部符号 "public

热度:326   发布时间:2016-04-29 02:08:56.0
error LNK2019: 无法解析的外部符号 "public:

错误 1 error LNK2019: 无法解析的外部符号 "public: __thiscall test::test(void)" (??0test@@[email protected]),该符号在函数 "class test __cdecl operator+(class test &,class test &)" ([email protected]?AVtest@@[email protected]@Z) 中被引用 C:\Users\wlp\Desktop\Project2\Project2\源.obj Project2

 

出现这样的问题,在网上查了一下,说有的是类中的函数只有声明没有实现,头文件路径不对之类的,但是怎么改都不行都没有用,最后发现是类的默认构造函数后面缺少了{},加上这个就可以正常编译了

  相关解决方案