-4
我試圖使用地圖作爲函數參數並獲取未定義的引用錯誤。未定義的參考
#include<iostream>
#include<map>
using namespace std;
void word_frequency(map<string,int> &doc,ifstream &file){
}
int main(){
map<string,int> doc1;
ifstream file;
file.open("doc1.txt");
word_frequency(doc1,file);
file.close();
return 0;
}
錯誤:
undefined reference to `word_frequency(std::map<std::string, int, std::less<std::string>, std::allocator<std::pair<std::string const, int> > >&, std::basic_ifstream<char, std::char_traits<char> >&)'
如果問題出現在文本中,錯誤會更有幫助。我們如何猜測哪條線路導致它? – StoryTeller
@StoryTeller說了什麼,並告訴我們你的編譯器命令行。 – user0042
包含''使用'std :: ifstream'。之後,這不是一個可重現的問題https://ideone.com/XUpGwH –
StoryTeller