我有一个逐行读取文件的程序,我希望使用mmap但是如何使用它来逐行读取文件?
感谢您的回答!
答案 0 :(得分:5)
在mmap()
编辑文件后,您可以将文件提供给合适的流缓冲区,从现有内存中读取数据,然后使用std::getline()
:
#include <streambuf>
#include <string>
#include <istream>
struct membuf
std::streambuf {
membuf(char* start, size_t size) {
this->setg(start, start, start + size);
}
};
int main() {
// mmap() the file yielding start and size
membuf sbuf(start, size);
std:istream in(&sbuf);
for (std::string line; std::getline(in, line); ) {
...
}
}