C++学习(四七零)std::ofstream

Posted hankern

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习(四七零)std::ofstream相关的知识,希望对你有一定的参考价值。

    osgDB::ofstream out("abc.txt");
    out<<"aaa";
    out.flush();
    out.close();
osgDB/fstream
class ofstream : public std::ofstream

public:
    OSGDB_EXPORT ofstream();
    OSGDB_EXPORT explicit ofstream(const char* filename,
        std::ios_base::openmode mode = std::ios_base::out);
    OSGDB_EXPORT ~ofstream();

    void OSGDB_EXPORT open(const char* filename,
        std::ios_base::openmode mode = std::ios_base::out);
;

以上是关于C++学习(四七零)std::ofstream的主要内容,如果未能解决你的问题,请参考以下文章

std::ofstream,写入前检查文件是不是存在

C++学习(四四七)cout没有输出

C++学习(二七零)AndroidStudio如何配置其它版本的CMake

为啥我可以在临时 std::ofstream 对象上使用 `operator<<`?

C++学习(四七七)glsl es使用总结

C++学习(四七九)qt如何使用系统opengl库