当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ ios nountibuf用法及代码示例



描述

它用于清除 str 流的 unitbuf "format" 标志。如果未设置 unitbuf 标志,则不会在每次插入操作后强制刷新关联的缓冲区。

声明

以下是 std::nounitbuf 函数的声明。

ios_base& nounitbuf (ios_base& str);

参数

str- 格式标志受到影响的流对象。

返回值

它返回参数 str。

异常

Basic guarantee- 如果抛出异常,则 str 处于有效状态。

数据竞争

它修改了 str。对同一个流对象的并发访问可能会导致数据竞争。

示例

在下面的示例中解释了 std::nounitbuf 函数。

#include <ios>
#include <fstream>

int main () {
   std::ofstream outfile ("test.txt");
   outfile << std::unitbuf <<  "Test " << "file" << '\n';
   outfile.close();
   return 0;
}

相关用法


注:本文由纯净天空筛选整理自 C++ ios Library - Nountibuf Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。