青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎} {C++ 高級} {C#界面,C++核心算法} {設計模式} {C#基礎}

vc編譯鏈接錯誤--LNK2001,LNK2019,

--??LINK2001
學習VC++時經常會遇到鏈接錯誤LNK2001,該錯誤非常討厭,因為對于
編程者來說,最好改的錯誤莫過于編譯錯誤,而一般說來發生連接錯誤時,
編譯都已通過。產生連接錯誤的原因非常多,尤其LNK2001錯誤,常常使人不
明其所以然。如果不深入地學習和理解VC++,要想改正連接錯誤LNK2001非
常困難。
  初學者在學習VC++的過程中,遇到的LNK2001錯誤的錯誤消息主要為:
  unresolved external symbol “symbol”(不確定的外部“符號”)。
  如果連接程序不能在所有的庫和目標文件內找到所引用的函數、變量或
標簽,將產生此錯誤消息。一般來說,發生錯誤的原因有兩個:一是所引用
的函數、變量不存在、拼寫不正確或者使用錯誤;其次可能使用了不同版本
的連接庫。
  以下是可能產生LNK2001錯誤的原因:
  一.由于編碼錯誤導致的LNK2001。
  1.不相匹配的程序代碼或模塊定義(.DEF)文件能導致LNK2001。例如,
如果在C++ 源文件內聲明了一變量“var1”,卻試圖在另一文件內以變量
“VAR1”訪問該變量,將發生該錯誤。
  2.如果使用的內聯函數是在.CPP文件內定義的,而不是在頭文件內定
義將導致LNK2001錯誤。
  3.調用函數時如果所用的參數類型同函數聲明時的類型不符將會產生
LNK2001。
  4.試圖從基類的構造函數或析構函數中調用虛擬函數時將會導致LNK2001。
  5.要注意函數和變量的可公用性,只有全局變量、函數是可公用的。
  靜態函數和靜態變量具有相同的使用范圍限制。當試圖從文件外部訪問
任何沒有在該文件內聲明的靜態變量時將導致編譯錯誤或LNK2001。
  函數內聲明的變量(局部變量) 只能在該函數的范圍內使用。
  C++ 的全局常量只有靜態連接性能。這不同于C,如果試圖在C++的
多個文件內使用全局變量也會產生LNK2001錯誤。一種解決的方法是需要時在
頭文件中加入該常量的初始化代碼,并在.CPP文件中包含該頭文件;另一種
方法是使用時給該變量賦以常數。
  二.由于編譯和鏈接的設置而造成的LNK2001
  1.如果編譯時使用的是/NOD(/NODEFAULTLIB)選項,程序所需要的運行
庫和MFC庫在連接時由編譯器寫入目標文件模塊, 但除非在文件中明確包含
這些庫名,否則這些庫不會被鏈接進工程文件。在這種情況下使用/NOD將導
致錯誤LNK2001。
  2.如果沒有為wWinMainCRTStartup設定程序入口,在使用Unicode和MFC
時將得到“unresolved external on _WinMain@16”的LNK2001錯誤信息。
  3.使用/MD選項編譯時,既然所有的運行庫都被保留在動態鏈接庫之內,
源文件中對“func”的引用,在目標文件里即對“__imp__func” 的引用。
如果試圖使用靜態庫LIBC.LIB或LIBCMT.LIB進行連接,將在__imp__func上發
生LNK2001;如果不使用/MD選項編譯,在使用MSVCxx.LIB連接時也會發生LNK2001。
  4.使用/ML選項編譯時,如用LIBCMT.LIB鏈接會在_errno上發生LNK2001。
  5.當編譯調試版的應用程序時,如果采用發行版模態庫進行連接也會產
生LNK2001;同樣,使用調試版模態庫連接發行版應用程序時也會產生相同的
問題。
  6.不同版本的庫和編譯器的混合使用也能產生問題,因為新版的庫里可
能包含早先的版本沒有的符號和說明。
  7.在不同的模塊使用內聯和非內聯的編譯選項能夠導致LNK2001。如果
創建C++庫時打開了函數內聯(/Ob1或/Ob2),但是在描述該函數的相應頭
文件里卻關閉了函數內聯(沒有inline關鍵字),這時將得到該錯誤信息。
為避免該問題的發生,應該在相應的頭文件中用inline關鍵字標志內聯函數。
  8.不正確的/SUBSYSTEM或/ENTRY設置也能導致LNK2001。
  其實,產生LNK2001的原因還有很多,以上的原因只是一部分而已,對初
學者來說這些就夠理解一陣子了。但是,分析錯誤原因的目的是為了避免錯
誤的發生。LNK2001錯誤雖然比較困難,但是只要注意到了上述問題,還是能
夠避免和予以解決的。

LNK2019
函數只有申明,沒有實現時,或是DLL中的東東沒有export啊

unresolved external symbol 'symbol' referenced in function 'function'

An undefined external symbol (symbol) was found in function. To resolve this error, provide a definition for symbol or remove the code that references it.

In Visual C++ .NET 2003, this error will be generated when /clris used and the CRT is not linked into your executable. Any object code generated by the compiler that is not built with /clr:initialAppDomain contains a reference to the _check_commonlanguageruntime_version function, which is defined in the C Runtime Library (CRT). This function provides for an error message if your application is run on version 1 of the runtime. Code generated by the current compiler is not compatible with version 1 of the common language runtime. So, if you compile without the CRT in Visual C++ .NET 2003, you should include a definition of the _check_commonlanguageruntime_version function in your code. As an alternative to using the _check_commonlanguageruntime_version function, you can link with nochkclr.obj, which contains an empty version of the function and does not provide for an error message if you run your application on version 1 of the runtime. To build an application with the current compiler version to run on the previous version of the runtime, use /clr:InitialAppDomain.

To build a pure MSIL executable (does not link with the CRT), you must define the function in your project; you cannot use nochkclr.obj (the .obj is native code). See Producing Verifiable Components with Managed Extensions for C++for more information about verifiable code. For more information on creating a pure MSIL output file from your Managed C++ project, see Converting Managed Extensions for C++ Projects from Mixed-Mode to Pure IL.

The rest of this topic discusses other causes of LNK2019.

Consider the following sample:

extern int i;
extern void g();
void f()
{
   i++;
   g();
}
int main()
{
}

If i and g are not defined in one of the files included in the build, the linker will generate LNK2019. These definitions can be added by including the source code file that contains the definitions as part of the compilation. Alternatively, you can pass .obj or .lib files that contain the definitions to the linker.

For C++ projects from previous releases that were upgraded to the current version, if __UNICODE was defined and the entry point was WinMain, you need to change the name of the entry point function to either _tWinMain or _tmain.

Common problems that cause LNK2019 include:

  • The declaration of the symbol contains a spelling mistake, such that, it is not the same name as the definition of the symbol.
  • A function was used but the type or number of the parameters did not match the function definition.
  • The calling convention (__cdecl, __stdcall, or __fastcall) differs on the use of the function declaration and the function definition.
  • Symbol definitions are in a file that was compiled as a C program and symbols are declared in a C++ file without an extern "C" modifier. In that case, modify the declaration, for example, instead of:
    extern int i;
    extern void g();

    use:

    extern "C" int i;
    extern "C" void g();

    Similarly, if you define a symbol in a C++ file that will be used by a C program, use extern "C" in the definition.

  • A symbol is defined as static and then later referenced outside the file.
  • A static member of a class is not defined. For example, member variable si in the class declaration below should be defined separately:
    #include <stdio.h>
    struct X {
       static int si;
    };
    
    // int X::si = 0;   // uncomment this line to resolve
    
    void main()
    {
       X *px = new X[2];
       printf("\n%d",px[0].si);   // LNK2019
    }

This error can also be generated as a result of conformance work that was done for Visual Studio .NET 2003: template friends and specialization. In Visual Studio?.NET 2003, a friend declaration that declares a new non-template function must be defined.

For code that is valid in both the Visual Studio?.NET 2003 and Visual Studio?.NET versions of Visual C++, explicitly specify the friend function's template argument list.

// LNK2019.cpp
// LNK2019 expected
template<class T>
void f(T)
{
}

template<class T>
struct S
{
   friend void f(T);
   // Try the folowing line instead:
   // friend void f<T>(T);
};

int main()
{
   S<int> s;
   f(1);   // unresolved external
}

The /VERBOSE linker option will help you see which files the linker is referencing. The /EXPORT and /SYMBOLS options of the DUMPBIN utility can also help you see which symbols are defined in your dll and object/library files.

posted on 2006-08-17 10:08 夢在天涯 閱讀(4261) 評論(0)  編輯 收藏 引用 所屬分類: CPlusPlus

公告

EMail:itech001#126.com

導航

統計

  • 隨筆 - 461
  • 文章 - 4
  • 評論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1812199
  • 排名 - 5

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              久久久精品国产免大香伊 | 夜夜精品视频一区二区| 久久综合九色综合欧美狠狠| 午夜视频在线观看一区二区| 亚洲欧美精品一区| 亚洲一二三区在线| 亚洲一区不卡| 午夜视频精品| 美日韩精品视频| 亚洲区欧美区| 日韩视频中午一区| 亚洲字幕一区二区| 欧美一级艳片视频免费观看| 久久精品国产亚洲a| 美女精品自拍一二三四| 欧美精品亚洲精品| 欧美午夜一区二区福利视频| 国产日韩欧美精品在线| 一区精品在线播放| 亚洲激情专区| 亚洲一区二区三区午夜| 久久精品视频在线观看| 亚洲电影av在线| 亚洲一区二区综合| 欧美xxx成人| 国产日韩三区| 一本色道久久综合一区| 久久精品日韩| 亚洲精品在线视频观看| 欧美一级午夜免费电影| 欧美精品一区二区三区蜜桃| 国产美女诱惑一区二区| 91久久在线播放| 欧美影片第一页| 亚洲人体1000| 久久综合综合久久综合| 国产精品私人影院| 亚洲理论在线观看| 久久精品国产亚洲精品| 亚洲精品久久久久中文字幕欢迎你 | 牛牛国产精品| 欧美精品国产| 狠狠色综合网| 亚洲一区网站| 亚洲欧洲日产国产综合网| 欧美一级艳片视频免费观看| 国产精品成人在线| 亚洲剧情一区二区| 免费欧美视频| 欧美在线日韩| 国产日韩欧美精品| 亚洲综合色视频| 一本色道久久88综合亚洲精品ⅰ| 久久久久久久久久久久久女国产乱| 亚洲精品在线免费观看视频| 欧美v日韩v国产v| 国产日韩精品一区二区三区在线| 夜夜嗨av色一区二区不卡| 欧美激情久久久久| 久久午夜羞羞影院免费观看| 在线 亚洲欧美在线综合一区| 欧美一级黄色录像| 亚洲天堂免费观看| 国产精品久久久久久超碰| 一区二区免费在线观看| 亚洲精品影视| 欧美色道久久88综合亚洲精品| 亚洲美女av网站| 亚洲精品你懂的| 久久夜色精品一区| 伊人男人综合视频网| 久久精品在线| 久久aⅴ国产欧美74aaa| 伊人久久成人| 亚洲高清在线| 欧美日本一区二区高清播放视频| 亚洲最新色图| 在线一区视频| 国产日韩欧美在线一区| 久久精品亚洲| 噜噜噜在线观看免费视频日韩| 亚洲国产精选| 亚洲精品系列| 国产精品入口夜色视频大尺度 | 久久久久国产精品厨房| 欧美在线三级| 亚洲乱码精品一二三四区日韩在线 | 亚洲免费在线观看| 在线亚洲免费视频| 国产亚洲aⅴaaaaaa毛片| 久久深夜福利免费观看| 老牛国产精品一区的观看方式| 亚洲全黄一级网站| 亚洲一区二区三区中文字幕在线| 国产日本亚洲高清| 欧美福利视频在线| 欧美日韩综合久久| 久久国产精品久久久久久电车| 久久久久久久综合狠狠综合| 一区二区高清| 久久久久久97三级| 一区二区久久久久| 久久久久久有精品国产| 亚洲一二三区精品| 久久久亚洲综合| 亚洲欧美日韩国产一区| 久热精品视频在线免费观看 | 亚洲第一天堂av| 模特精品在线| 日韩图片一区| 国内在线观看一区二区三区| 亚洲国产欧美另类丝袜| 国产精品蜜臀在线观看| 欧美福利视频在线观看| 国产精品实拍| 亚洲精品一区二区在线观看| 黑人极品videos精品欧美裸| 日韩视频二区| 亚洲精品久久嫩草网站秘色| 校园激情久久| 性欧美精品高清| 欧美日韩国产综合一区二区| 欧美激情在线有限公司| 国产在线播精品第三| 亚洲午夜羞羞片| 亚洲视频你懂的| 欧美人成在线视频| 亚洲第一综合天堂另类专| 激情视频一区二区| 午夜亚洲视频| 欧美一二三区精品| 国产精品久久久久影院色老大| 日韩亚洲视频| 亚洲图色在线| 欧美三级黄美女| 一本到12不卡视频在线dvd| 一区二区电影免费观看| 欧美另类极品videosbest最新版本| 在线亚洲免费视频| 欧美国产精品va在线观看| 欧美成人综合一区| 亚洲高清影视| 欧美成人综合| 亚洲日本在线视频观看| 99视频超级精品| 欧美特黄一级| 亚洲在线免费| 久久久午夜精品| 亚洲成人中文| 欧美国产一区二区在线观看| 亚洲国产精品va在线观看黑人 | 久久精品视频免费播放| 午夜精品理论片| 国产精品一级| 久久久精品欧美丰满| 欧美aa国产视频| 亚洲国产精品久久久久婷婷884| 另类春色校园亚洲| 亚洲国产精品久久91精品| 最新日韩在线视频| 欧美日韩国产探花| 亚洲伊人伊色伊影伊综合网| 久久精品在线视频| 亚洲第一天堂无码专区| 欧美精品色综合| 在线亚洲欧美视频| 玖玖玖免费嫩草在线影院一区| 亚洲精品免费一区二区三区| 国产精品国产三级国产aⅴ9色| 久久国产福利国产秒拍| 亚洲成人自拍视频| 亚洲一区国产精品| 在线日韩欧美| 国产精品久久福利| 老司机67194精品线观看| 日韩视频免费| 一区二区三区在线观看视频 | 亚洲图中文字幕| 久久久99精品免费观看不卡| 亚洲三级免费电影| 国产精品一区二区你懂得| 久久综合给合| 性色av一区二区三区在线观看| 曰本成人黄色| 国产精品久久久久久久第一福利| 久久久精品网| 亚洲视频在线播放| 欧美高清视频一二三区| 欧美一级专区| 9人人澡人人爽人人精品| 国内精品久久久久久 | 久久综合色播五月| 亚洲影视在线播放| 亚洲国产精品日韩| 久久精品二区三区| 亚洲在线1234| 99精品国产在热久久下载| 伊人久久久大香线蕉综合直播| 国产精品都在这里| 欧美区在线播放|