Inheritance diagram Several typedefs for common character types are provided: Defined in header<fstream> TypeDefinition std::ofstreamstd::basic_ofstream<char> std::wofstreamstd::basic_ofstream<wchar_t> Member types Member typeDefinition char_typeCharT ...
类模板basic_ofstream实现文件上基于流的高层输出操作。它将std::basic_ostream的高层接口赋予基于文件的流缓冲(std::basic_filebuf)。 std::basic_ofstream的典型实现只保有一个非派生成员:一个std::basic_filebuf<CharT, Traits>的实例。 继承图 提供了几个针对常用字符类型的 typedef: ...
也许可以看看 fs.rdstate()。 https://en.cppreference.com/w/cpp/io/basic_ios/rdstate 0投票 您的if 语句没有按照您的想法进行。目前,您只是检查 std::ofstream 是否不为 nullptr,很可能就是这种情况,但这并不意味着文件已成功打开。在对流进行操作之前,使用 std::ofstream::is_open 检查有效性。
voidopen(conststd::string&filename, ios_base::openmodemode=ios_base::out); (seit C++11) Opens und assoziierten Datei mit dem Strom. Ruftclear()über Erfolg odersetstate(failbit)bei Ausfall . Original: Opens and associates file with the file stream. Callsclear()on success orsetstate(failb...
From cppreference.com <cpp |io |basic ofstream voidopen(constchar*filename, std::ios_base::openmodemode =std::ios_base::out); (1) voidopen(conststd::filesystem::path::value_type*filename, std::ios_base::openmodemode
cppreference.com 创建账户 页面 讨论 变换 查看 编辑 历史 std::basic_ofstream<CharT,Traits>::closeC++ 输入/输出库 std::basic_ofstream void close(); 关闭关联文件。 相当于调用 rdbuf()->close()。若操作期间出现错误,则调用 setstate(failbit)。
API Reference Document std::basic_ofstreamC++ Input/output library std::basic_ofstream Defined in header <fstream> template< class CharT, class Traits = std::char_traits<CharT> > class basic_ofstream : public std::basic_ostream<CharT, Traits> The class template basic_ofstream implements ...
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。 http://en.cppreference.com/w/cpp/io/basic[医]流/基本[医]流 本文档系腾讯云开发者社区成员共同维护,如有问题请联系cloudcommunity@tencent.com 最后更新于:2017-12-18 分享 扫描二维码 扫码关注腾讯云开发者 领取腾讯云代金券...
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。 http://en.cppreference.com/w/cpp/io/basic[医]流/IS[医]开着的营业的 本文档系腾讯云开发者社区成员共同维护,如有问题请联系cloudcommunity@tencent.com 最后更新于:2017-12-18 分享 扫描二维码 扫码关注腾讯云开发者 领取腾讯云代金券...
void swap( basic_ofstream& other ); (C++11 起) 交换流与 other 的状态。 通过调用 basic_ostream<CharT, Traits>::swap(other) 和 rdbuf()->swap(other.rdbuf()) 进行。 参数 other - 要交换状态的流 返回值 (无) 异常 可能抛出实现定义的异常。 示例...