gpt4 book ai didi

C++ fileIO 行数

转载 作者:行者123 更新时间:2023-11-30 00:45:57 28 4
gpt4 key购买 nike

ifstream inFile;
inFile.open(filename); //open the input file

stringstream strStream;
strStream << inFile.rdbuf(); //read the file

string str = strStream.str(); //str holds the content of the file

我正在使用这段代码从文件中读取。我需要获取该文件的行数。有没有办法不用第二次读取文件就可以做到这一点?

最佳答案

你已经有了一个字符串中的内容,所以只需检查那个字符串:

size_t count = 0, i = 0, length = str.length();
for(i=0;i<length;i++)
if(str[i]=='\n') count++;

关于C++ fileIO 行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40823383/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com