1
不兼容我很困惑爲什麼我得到這個錯誤。標題的錯誤與原型Globals.h發生的事情:聲明與原型
void NPCTalk(std::string const& speaker,std::vector<std::string> const& text)
和Functions.cpp功能:
void NPCTalk(string const& speaker,std::vector<std::string> const& text){
vector<string>::const_iterator it;
for (it=text.begin();it!=text.end();it++){
cout << speaker << ": " << *it << endl << endl;
system("PAUSE");
}
}
什麼是錯誤?編譯錯誤?你有使用名稱空間標準;在你的代碼? – 2011-03-20 15:09:57