visual c++ 6.0 报错: Debug/第一次的.exe : fatal error LNK1120: 7 unresolved externals 急救!!!!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了visual c++ 6.0 报错: Debug/第一次的.exe : fatal error LNK1120: 7 unresolved externals 急救!!!!相关的知识,希望对你有一定的参考价值。

-----------Configuration: 第一次的 - Win32 Debug--------------------
Linking...
cpp.obj : error LNK2001: unresolved external symbol _initwindow
cpp.obj : error LNK2001: unresolved external symbol _closegraph
cpp.obj : error LNK2001: unresolved external symbol _circle
cpp.obj : error LNK2001: unresolved external symbol _rectangle
cpp.obj : error LNK2001: unresolved external symbol _line
cpp.obj : error LNK2001: unresolved external symbol _lineto
cpp.obj : error LNK2001: unresolved external symbol _moveto
Debug/第一次的.exe : fatal error LNK1120: 7 unresolved externals
执行 link.exe 时出错.

第一次的.exe - 1 error(s), 0 warning(s)

看看你的头文件,例如Example.cpp的头文件是Example.h
Example.cpp里每个用到的函数都要在Example.h定义
例如int sum(int a,int b);要卸载Example.h里
同时,Example.cpp里写函数体
int Example::sum(int a,int b)
函数

注意一定要有"Example::"
参考技术A 你确定这几个函数你都实现了?追问

不知道,我直接把书上的复制过去的

参考技术B 把代码发过来看一下。我邮箱:suosuma@163.com追问

发过去了,帮忙看下吧

追答

没收到啊,你再发一遍。要不你发到704010891@qq.com

追问

收到了么?

参考技术C 是不是工程类型或者文件类型建错了???追问

不是吧,Win32 console application工程 C++source File

以上是关于visual c++ 6.0 报错: Debug/第一次的.exe : fatal error LNK1120: 7 unresolved externals 急救!!!!的主要内容,如果未能解决你的问题,请参考以下文章

visual c++ 6.0编译时总有一个错误是怎么回事?

microsoft visual c++ 6.0英文版怎么安装?

如何将项目从 Visual C++ 6.0 转换为 Visual Studio Express 2010?

microsoft visual c++6.0和micorostf visual c++ 2010 express有啥区别

Windows 8 上的 Visual C++ 6.0

visual C++ 6.0 是先点“Compile”还是“Build”?分不分点击顺序??作用各是啥??