网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VC++ > 正文
关于LNK2001错误的一些总结
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式

  在最开始的编程过程中,最常出现的错误就是LNK2001这个错误,究其原因,其实一句话可以解释:当程序调用函数(function1)时,没有找到function1具体的实现部分。  
  最常见的例子和解释:  
      main   or   winmain函数:应该是选择工程类型的时候有错误,因为系统会根据  
  subsystem的选项来决定调用main或winmain作为程序的入口函数,如果是console,  
  会选择main,   否则如果是windows,则选择winmain。所以,如果程序没有main或者  
  winmain的实现部分,就会出现LNK2001.  
      _beginthread,   _beginthreadex:程序中隐式调用多线程的东西,比如你使用MFC  
  的类,所以这是应该选择/MD(use   multithread   cpp   runtime   library)编译指令,否则就会出现LNK2001.  
      api函数:这时应该是没有link相关的Lib文件。因为dll形成的时候,静态的实现部分是放在lib文件,所以你使用函数时,系统会去找它的实现部分,如果没有,就出现  
  LNK2001.  
      自己定义的函数:那很明显,就是只声明了函数而没有实现,包括类的函数都是。 

例如:

#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
using namespace std;
//---------------------------------------
typedef vector< vector<int> > Mat;
Mat input();
void mySort(Mat &a);
void print(const Mat &a);
//------------------------------------------
int main()
{
 Mat a = input();
 mySort(a);
 print(a);

 return 0;
}
//------------------------------------------
Mat input()
{
 ifstream in("aaa.txt");
 Mat a;
 for(string s; getline(in, s);)
 {
  vector<int> b;
  istringstream sin(s);
  for(int ia; sin>>ia;)
   b.push_back(ia);
  a.push_back(b);
 }
 return a;
}
//-------------------------------------------
void mySort(Mat &a)
{
 for(int pass=1; pass<a.size(); ++pass)
 {
  for(int i=0; i<a.size()-pass; ++i)
  {
   if(a[i+1].size()<a[i].size())
    a[i].swap(a[i+1]);
  }
 }
}
//-------------------------------------------
void print(  Mat &a)  //此处与声明处不一致,缺少const,就会导致链接错误
{
 for(int i=0; i<a.size(); ++i)
 {
  for(int j=0; j<a[i].size(); ++j)
   cout << a[i][j] << " ";
  cout << endl;
 }
}
//=================================================

提示错误:

Compiling
Two D Vectors.cpp
Linking
Two D Vectors.obj : error LNK2001: unresolved external symbol "void __cdecl print(class std::vector<class std::vector<int,class std::allocator<int> >,class std::allocator<class std::vector<int,class std::allocator<int> > > > const &)" ?print@@YAXAB">?print@@YAXAB
V?$vector@V?$vector@HV?$allocator@H@std@@@std@@V?$allocator@V?$vector@HV?$allocator@H@std@@@std@@@2@@std@@@Z)
Debug/Two D Vectors.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号