使用 noskipws 读取文件?

File reading with noskipws?

本文关键字:文件 读取 noskipws 使用      更新时间:2023-10-16

我读取.txt文件(包括空格和换行符 (((的方法是否正确? 我编写程序的指令要求我检测空格和换行符,以便可以操作它们。

char word_from_file;
ifstream input_file;
input_file.open (*recieved_file_name+".txt");
if (input_file.good() && input_file.is_open())
{
while (!input_file.eof())
{
input_file >> noskipws >> word_from_file;
if (*recieved_choice==1)
{
cout << *recieved_key;
encrypt (recieved_file_name, &word_from_file, recieved_key);
}
}
input_file.close();
}

您的代码是正确的,因为它读取空格和换行符,但输入的错误检查位置不正确,这可以通过使用istream::get()来缩短。

char word_from_file;
while (input_file.get(word_from_file)) {
if (*recieved_choice == 1) {
cout << *recieved_key;
encrypt (recieved_file_name, &word_from_file, recieved_key);
}
}

istream::get()从流中读取未格式化的字符,因此它将自动读取空格和换行符。

也无需检查文件是否打开或手动关闭它。该文件将在创建其范围结束时自动关闭,如果文件未打开,则任何尝试的输入操作都是无操作。