还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

ifstream 线程安全读文件

来源:清泛编译     2018-01-04 09:52:32    人气:     我有话说( 0 人参与)

函数 safeGetline:std::istream& safeGetline(std::istream& is, std::string& t){ t clear(); 使用std::streambuf

函数 safeGetline
std::istream& safeGetline(std::istream& is, std::string& t)
{
    t.clear();

    //这比使用std::istream逐个读取它们要快。 
	//以这种方式使用streambuf的代码必须由sentry对象保护。 
	// sentry对象执行各种任务,如线程同步和更新流状态。

    std::istream::sentry se(is, true);
    std::streambuf* sb = is.rdbuf();

    for(;;) {
        int c = sb->sbumpc();
        switch (c) {
        case '\r':
            c = sb->sgetc();
            if(c == '\n')
                sb->sbumpc();
            return is;
        case '\n':
        case EOF:
            return is;
        default:
            t += (char)c;
        }
    }
}

例子:
int main()
{
    std::string path = "end_of_line_test.txt"

    std::ifstream ifs(path.c_str());
    if(!ifs) {
        std::cout << "Failed to open the file." << std::endl;
        return EXIT_FAILURE;
    }

    int n = 0;
    std::string t;
    while(safeGetline(ifs, t))   //<---- INFINITE LOOP happens here. <----
        std::cout << "\nLine " << ++n << ":" << t << std::endl;

    std::cout << "\nThe file contains " << n << " lines." << std::endl;
    return EXIT_SUCCESS;
}

ifstream safeGetline sentry

本文源自互联网,采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可,
版权归原作者,如有问题请联系service@tsingfun.com (编辑:admin)
分享到: