LNK2005 (already defined)



我知道你已经看到21728517人在这个问题上寻求帮助,但是在搜索和阅读了这个问题之后,我真的不能弄清楚这个问题。我知道这个错误,我以前见过,但是,这一次,我似乎无法绕过它。

我也试过这个清单。

所以,错误:

Error   25  error LNK2005: "void __cdecl checkStatus(unsigned int &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,bool)" (?checkStatus@@YAXAAIV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@_N@Z) already defined in DollarRecognizer.obj C:UsersRui TeixeiraDesktopCurrentTeseSVNTIFEE_EmptyTIFEE_Emptymain.obj TIFEE_Empty
Error   26  error LNK2005: "void __cdecl depth2rgb(unsigned short const *,unsigned short *,char *,int,int)" (?depth2rgb@@YAXPBGPAGPADHH@Z) already defined in DollarRecognizer.obj  C:UsersRui TeixeiraDesktopCurrentTeseSVNTIFEE_EmptyTIFEE_Emptymain.obj TIFEE_Empty
Error   27  error LNK2005: "class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > __cdecl explode(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,char)" (?explode@@YA?AV?$vector@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@D@Z) already defined in DollarRecognizer.obj    C:UsersRui TeixeiraDesktopCurrentTeseSVNTIFEE_EmptyTIFEE_Emptymain.obj TIFEE_Empty

所以,问题是,这些函数定义在"misc.h"中,使用适当的#ifndef #define #endif。它们在其他地方没有定义,但我仍然得到了死亡的LNK2005。我做错了什么?

定义misc.cpp中的函数,而不是misc.h中的函数。

问题可能是由于#include在多个CPP文件misc.h。头文件保护防止头文件在同一个翻译单元中被包含多次,但是每个CPP文件(通常)是一个单独的翻译单元。所以这些函数最终被定义了两次——在每个翻译单元中定义一次。

相关内容

  • 没有找到相关文章

最新更新