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的主要内容,如果未能解决你的问题,请参考以下文章
C++学习(二七零)AndroidStudio如何配置其它版本的CMake