我对导致此错误的脚本有什么不正确感到有些困惑。
我有一个调用游戏设置填充的函数,但它不喜欢我的 getline。
我还应该提到这些是我为它包含的文件:
#include <fstream>
#include <cctype>
#include <map>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;'
这就是我所拥有的:
std::map<string, string> loadSettings(std::string file){
ifstream file(file);
string line;
std::map<string, string> config;
while(std::getline(file, line))
{
int pos = line.find('=');
if(pos != string::npos)
{
string key = line.substr(0, pos);
string value = line.substr(pos + 1);
config[trim(key)] = trim(value);
}
}
return (config);
}
我的函数是这样调用的main.cpp
//load settings for game
std::map<string, string> config = loadSettings("settings.txt");
//load theme for game
std::map<string, string> theme = loadSettings("theme.txt");
我哪里做错了 ?请帮忙!
错误:
settings.h(61): error C2784: 'std::basic_istream<_Elem,_Traits> &std::getline(std::basic_istream<_Elem,_Traits> &&,std::basic_string<_Elem,_Traits,_Alloc> &)' : could not deduce template argument for 'std::basic_istream<_Elem,_Traits> &&' from 'std::string'