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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error LNK2019: 无法解析的外部符号相关的知识,希望对你有一定的参考价值。

1> 所有输出均为最新。
1>file1.obj : error LNK2019: 无法解析的外部符号 "void __cdecl show_polar(struct polar)" (?show_polar@@YAXUpolar@@@Z),该符号在函数 _main 中被引用
1>file1.obj : error LNK2019: 无法解析的外部符号 "struct polar __cdecl rect_to_polar(struct rect)" (?rect_to_polar@@YA?AUpolar@@Urect@@@Z),该符号在函数 _main 中被引用
1>C:\Users\s\Documents\Visual Studio 2010\Projects\第九章\file1\Debug\file1.exe : fatal error LNK1120: 2 个无法解析的外部命令
1>
1>生成失败。
1>
1>已用时间 00:00:01.26
不知道是哪里有问题,好几个工程都是这个问题,求大侠指导

参考技术A 你可以看看是不是工程里面没有添加那个头文件,一般文件还是在哪个文件夹下,但是没有添加进工程,我有两次就是那样的,你可以试试找到CDynSplitterWnd头文件然后添加进工程,或者包含试试。我也不清楚你的具体情况,所以只是猜测而已。

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

1>Experiment2_functions.obj : error LNK2019: 无法解析的外部符号 "class Linklist<class Prt> __cdecl doIntersection(class Linklist<class Prt> &,class Linklist<class Prt> &)" (?doIntersection@@YA?AV?$Linklist@VPrt@@@@AAV1@0@Z),该符号在函数 "void __cdecl menu2Q(void)" (?menu2Q@@YAXXZ) 中被引用

但是这个函数:
template<class dtp> Linklist<dtp> doIntersection(Linklist<dtp> &,Linklist<dtp> &)
的定义与void menu2Q() 的定义都在同一个cpp中,而且在menu2Q中进行了doIntersection的声明;
再而且Linklist类定义中已有友元函数声明,类所在的头文件也被包含进来了;
再而且doIntersection并不访问Prt类的私有成员。

看了好久也查了好多,实在搞不懂是咋回事T_T

谢谢大家!!!!!!

参考技术A 你用了zylib库函数了吧。这个错误说明你包含了zylib.h,但没有正确导入它的链接库。
要确认zylib的链接库放在正确的位置(一般放在VS/VC目录子目录,参考VC的选项目录设置),并被工程正确的导入(可以在工程设置中导入,也可以通过代码)

以上是关于error LNK2019: 无法解析的外部符号的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

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

error LNK2019: 无法解析的外部符号 求解答..

error LNK2019: 无法解析的外部符号 WinMain,error LNK2001: 无法解析的外部符号 WinMain