basic_ostream::write

将字符在流。

basic_ostream<_Elem, _Tr>& write(
    const char_type *_Str,
    streamsize _Count
);

参数

  • _Count
    将的计数字符到流中。

  • _Str
    将的字符到流中。

返回值

为basic_ostream对象的引用。

备注

非格式化输出函数 插入 _Count 元素序列开始在 _Str的。

示例

使用 write有关示例,请参见 streamsize

要求

标头: <ostream>

命名空间: std

请参见

参考

basic_ostream Class

iostream编程

(mfc)约定