克服 std :: ifstream 的行尾差异
处理文本文件时,行尾可能因平台而异,从而导致潜在的兼容性问题。虽然 C 运行时通常可以正确处理行结尾,但考虑跨平台共享文本文件的场景至关重要。
为了解决这个问题,让我们探索一个自定义函数 safeGetline,它可以无缝处理所有三种常见的行结尾格式(r、n 和 rn):
std::istream& safeGetline(std::istream& is, std::string& t) { // Reset the string to be sure t.clear(); // Utilize a sentry object for synchronized stream access std::istream::sentry se(is, true); std::streambuf* sb = is.rdbuf(); while (true) { // Fetch the next character int c = sb->sbumpc(); switch (c) { case '\n': // Encountered a line ending with just \n return is; case '\r': // Possibility of \r\n line ending if (sb->sgetc() == '\n') sb->sbumpc(); return is; case std::streambuf::traits_type::eof(): // End of file reached if (t.empty()) is.setstate(std::ios::eofbit); return is; default: // Append the character to the string t += (char)c; } } }
该函数通过使用流缓冲区从流中逐个读取字符来进行操作,这比读取单个字符更高效直接来自输入流。它处理各种行结束约定,并且还考虑了最后一行没有换行符的空的可能性。
为了演示此函数的用法,让我们创建一个简单的测试程序:
int main() { // Specify the path to the text file containing lines with different line endings std::string path = ...; // Open the file for input std::ifstream ifs(path.c_str()); if (!ifs) { std::cout << "Error opening the file." << std::endl; return EXIT_FAILURE; } // Count the number of lines in the file int n = 0; std::string line; while (!safeGetline(ifs, line).eof()) ++n; // Display the count of lines std::cout << "The file contains " << n << " lines." << std::endl; return EXIT_SUCCESS; }
通过使用 safeGetline 函数,该程序可以准确计算指定文本文件中的行数,无论行结束格式如何。
以上是如何在 C 中可靠地从具有混合行结尾的文件中读取行?的详细内容。更多信息请关注PHP中文网其他相关文章!