我有点新,在我的 C++ 代码中遇到了一些非常奇怪的错误。据我所知,它们是由于多个包含错误造成的。
我有以下文件
CardBase.h
#include <string>
#include <vector>
#include <map>
class Class1 {
string someString;
vector<type> someVector;
map<type,type> someMap;
type someMethod (param);
}
CardBase.cpp
#include "StringParser.cpp"
someType Class1::someMethod (param){
// Use splitAtChar()
}
字符串解析器.cpp
#include <string>
#include <vector>
someType splitAtChar(){
...
}
这会在 VS 代码中产生两个错误:
LNK2005 "类 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 splitAtChar(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,char )" (?splitAtChar@@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) 已在 CardBase.obj 中定义
和
找到一个或多个多重定义的符号