gpt4 book ai didi

c++ - 如何在不遍历内容的情况下查找文件中的字符数

转载 作者:可可西里 更新时间:2023-11-01 18:05:32 24 4
gpt4 key购买 nike

在一个项目中,我必须读取一个文件,我必须处理文件中的字符数,有没有一种方法可以在不逐字符读取的情况下获取字符数(否则我将不得不读取文件两次,一次只是为了找出其中的字符数)。

有可能吗?

最佳答案

是的。

求到末尾得到size的末尾位置。

FILE*  file = fopen("Plop");
fseek(file, 0, SEEK_END);
size_t size = ftell(file); // This is the size of the file.
// But note it is in bytes.
// Also note if you are reading it into memory this is
// is the value you want unless you plan to dynamically
// convert the character encoding as you read.

fseek(file, 0, SEEK_SET); // Move the position back to the start.

在 C++ 中,流具有相同的功能:

std::ifstream   file("Plop");
file.seekg(0, std::ios_base::end);
size_t size = file.tellg();

file.seekg(0, std::ios_base::beg);

关于c++ - 如何在不遍历内容的情况下查找文件中的字符数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9132151/

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