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

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 夢在天涯 閱讀(4258) 評論(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

搜索

  •  

積分與排名

  • 積分 - 1811750
  • 排名 - 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>
              欧美一区二区三区视频免费播放 | 亚洲人精品午夜在线观看| 久久精品欧美日韩精品| 午夜精品美女久久久久av福利| 国产精品一卡| 久久久久久69| 香蕉久久国产| 亚洲国产精品123| 亚洲国产天堂久久综合| 欧美啪啪成人vr| 亚洲午夜在线视频| 欧美影院在线| 亚洲人成网在线播放| 一区二区三区偷拍| 国内揄拍国内精品久久| 欧美华人在线视频| 欧美精品一区二区三区高清aⅴ| 中文国产成人精品久久一| 亚洲一区二区三区午夜| 亚洲电影欧美电影有声小说| 亚洲精品国产精品乱码不99| 国产精品国产三级国产专播品爱网| 欧美在线精品一区| 蜜桃伊人久久| 亚洲一区精品在线| 久久视频精品在线| 国产精品99久久久久久人| 欧美一区二区三区视频免费| 亚洲国内精品在线| 亚洲欧美精品一区| 亚洲高清av| 性做久久久久久| 亚洲视频在线看| 欧美99在线视频观看| 久久噜噜亚洲综合| 国产精品视频不卡| 亚洲精品国产品国语在线app| 国产亚洲一区二区在线观看| 亚洲人成小说网站色在线| 狠狠色丁香久久婷婷综合丁香| 99精品福利视频| 亚洲精品黄色| 久久久精品性| 欧美一区二区精品在线| 欧美日韩另类视频| 亚洲日本中文字幕| 最新高清无码专区| 久久噜噜亚洲综合| 久久久久综合| 国产亚洲精品7777| 亚洲图片欧美午夜| 亚洲综合日韩中文字幕v在线| 久久婷婷国产综合国色天香| 久久九九99视频| 国产午夜精品久久久久久久| 在线视频日韩精品| 亚洲深夜激情| 欧美午夜精品久久久久免费视 | 久久成年人视频| 国产精品国产三级国产专区53| 亚洲日本va午夜在线影院| 亚洲国产1区| 女女同性精品视频| 亚洲福利视频三区| 99精品福利视频| 欧美日韩理论| 亚洲午夜精品在线| 欧美一区国产在线| 国产午夜久久| 久久久成人精品| 欧美国产日本| 一本色道久久综合狠狠躁篇怎么玩 | 另类天堂视频在线观看| 在线精品一区二区| 欧美freesex交免费视频| 亚洲国产女人aaa毛片在线| 一本色道88久久加勒比精品| 欧美日韩亚洲一区三区| 一个色综合av| 久久成人精品一区二区三区| 伊人激情综合| 欧美美女福利视频| 中国成人在线视频| 久久精品国产精品亚洲综合| 亚洲国产va精品久久久不卡综合| 欧美黄色精品| 亚洲尤物精选| 欧美大成色www永久网站婷| 一区二区三区精品久久久| 国产精品一区免费在线观看| 久久久久国产精品厨房| 亚洲欧洲日本mm| 久久精品国产清自在天天线| 亚洲国产精品999| 国产精品久久久久久久久免费| 久久av在线看| 一区二区三区久久精品| 老司机精品导航| 亚洲一区二区三区四区五区黄| 国内激情久久| 欧美日韩视频不卡| 久久免费视频网| 在线一区免费观看| 欧美不卡视频一区| 欧美一级黄色录像| 亚洲精选视频免费看| 国产亚洲第一区| 欧美三级网址| 欧美freesex8一10精品| 欧美一区日本一区韩国一区| 亚洲美女啪啪| 欧美激情视频给我| 久久精品综合网| 亚洲欧美电影院| 99视频精品在线| 亚洲成人在线观看视频| 国产日韩欧美日韩大片| 欧美三级午夜理伦三级中视频| 久久综合伊人77777蜜臀| 亚洲免费在线视频| 亚洲视频免费在线观看| 亚洲日韩成人| 亚洲第一在线综合网站| 可以看av的网站久久看| 久久久91精品国产| 午夜亚洲视频| 亚洲欧美日韩人成在线播放| 99精品国产一区二区青青牛奶| 亚洲国产精品成人| 伊人久久大香线蕉综合热线| 国产日韩在线播放| 国产欧美日韩一区二区三区在线| 欧美视频国产精品| 欧美日韩中文在线观看| 欧美久久婷婷综合色| 欧美精品色网| 欧美日韩一区二区三区在线| 欧美成人精品一区| 欧美成人有码| 欧美激情亚洲激情| 欧美精品一区二区三区很污很色的 | 亚洲国产裸拍裸体视频在线观看乱了中文| 久久久亚洲欧洲日产国码αv| 欧美一级专区免费大片| 午夜日韩视频| 久久久久久亚洲综合影院红桃| 久久精品99国产精品日本| 久久黄色小说| 欧美成人乱码一区二区三区| 欧美激情亚洲一区| 亚洲精品一区二区三区四区高清| 亚洲全部视频| 一区二区三区免费网站| 亚洲欧美国产日韩中文字幕| 欧美一区在线视频| 免费在线亚洲| 欧美午夜电影在线| 国产亚洲精品久久久久动| 在线成人激情| 一区二区国产日产| 欧美在线观看视频| 欧美大片在线观看一区二区| 亚洲人成在线观看一区二区| 在线亚洲一区| 久久久综合香蕉尹人综合网| 欧美韩日高清| 国产欧美日韩视频一区二区三区| 黄色成人av网| 日韩一本二本av| 欧美与欧洲交xxxx免费观看 | 久久一区二区视频| 亚洲欧洲综合| 欧美尤物巨大精品爽| 欧美成人高清| 国产日韩欧美一二三区| 亚洲国产毛片完整版| 亚洲免费视频一区二区| 麻豆av福利av久久av| 一区二区三区四区五区在线 | 亚洲欧美成人网| 老牛嫩草一区二区三区日本| 国产精品二区影院| 亚洲韩国一区二区三区| 欧美在线视频一区二区| 亚洲精品国产无天堂网2021| 欧美一区免费| 国产精品乱人伦中文| 亚洲国产你懂的| 久久精品亚洲精品| 一区二区日韩欧美| 欧美成人精品一区二区三区| 国产欧美一区二区白浆黑人| 亚洲美女啪啪| 狼狼综合久久久久综合网| 亚洲色在线视频| 欧美日本韩国一区二区三区| 在线观看亚洲精品| 久久久999国产| 亚洲欧美电影院| 国产精品久久久久久久9999|