标签: c++ file-io ifstream
想要在不经过文本文件的每个字符的情况下检测'\ n'。任何提示?
答案 0 :(得分:3)
Something 必须读取所有字节以检查该分隔符。
使用其中一个getline(或istream::getline)函数,以便库执行搜索,而不是代码。
getline
答案 1 :(得分:3)
来自Iostream的getline(...)怎么样?
getline(...)
http://www.cplusplus.com/reference/iostream/istream/getline/