我有一个文本文件,其中仅包含带有以下消息的行:
你好
你好
现在我得到了这个函数,它读取这些行并返回一个包含它们的数组。
string* printlines(string filename)
{
string line;
int sum = 2;
int i =0;
string *quotes;
ifstream infile(filename.c_str());
quotes= new string[2];
if (infile.is_open())
{
while (infile.good())
{
getline (infile,line);
quotes[i] = line; // <--- here's the problem
i++;
}
}
infile.close();
return quotes;
}
gdb 报告粗体行有问题,但我没有看到。