我正在從文件(名稱顏色)中讀取數據,並將其插入到表中,並且當名稱匹配時,返回正確的顏色。如何在C++函數中返回字符串
如何在功能
class call_color
{
public:
std::map<std::string, std::string> table;
bool read(std::string &fname)
{
std::ifstream ifs (fname, std::ifstream::in);
if(ifs.fail())
{
printf("Cant open\n");
return false;
}
return read(ifs);
}
bool read(std::istream &is)
{
for (std::string line; std::getline(is, line);)
{
char *name = strtok(const_cast<char*>(line.c_str()), " \r");
if(name != nullptr)
{
char *color = strtok(nullptr, " ");
if(color != nullptr)
{
table[name] = color;
}
else
{
printf("No color %s\n", line.c_str());
return false;
}
}
else
{
printf("No Name\n");
return false;
}
}
return true;
}
std::string get_color(std::string name)
{
std::string color;
std::map<std::string, std::string>::iterator it;
it = table.find(name);
if (it != table.end())
{
color = it->second;
}
return color;
}
};
它返回一個巨大的負值(-772802864)或任何名稱巨大正值返回一個字符串。但我期望得到一個字符串,如:scdscsdcs
而你的問題是.....? – EdChum
'0'不是有效的字符串... –
拋出異常而不是返回0? –