当我尝试比较 C++ 中的两个字符串时(一个从文件中读取,另一个分配了一个值),我得到一个不正确的输出:
ifstream pgmFile;
pgmFile.open(fileName);
string temp;
string comp = "P5";
for(int i = 0; i < 2; i++)
{
pgmFile >> noskipws >> temp;
cout << temp;
}
if(temp == comp)
{}
else
cout << "File does not contain 'P5'. Please provide the correct type of file." << endl;
理论上,这应该返回“true”这两个字符串是正确的。temp = "P5" 的输出,所以我不明白为什么每次都会遇到我的 else 情况。非常感谢任何帮助,谢谢!