PHP的SplFileObject类的C ++ / VC ++替代品

时间:2012-05-19 09:28:55

标签: php c++ visual-c++ splfileobject

是否有可用的手动编码或VC ++插件与PHP的SplFileObject相同?

请参阅问题https://stackoverflow.com/questions/10650864/fetching-nth-line-of-a-file/10650864#10650864。我想用C ++实现这个目标

1 个答案:

答案 0 :(得分:1)

不确定为什么要使用它,iostreams或boost :: filesystem呢?

http://msdn.microsoft.com/de-de/library/22z6066f%28v=vs.100%29

http://www.boost.org/doc/libs/1_49_0/libs/filesystem/v3/doc/index.htm

更新(在阅读评论后添加代码示例):

那样的东西呢?

#include <iostream>
#include <fstream>
#include <string>

int main(int argc, char* argv[])
{
    auto fd = std::fstream("veryLargeFile.txt");
    if (fd.good()) {
        std::string buffer;
        fd.seekg(200000);
        std::getline(fd, buffer);
        std::cout << buffer << std::endl;
    }
    fd.close();

    return 0;
}