basic_streambuf::xsputn

插入元素的保护,虚函数以输出流。

virtual streamsize xsputn(
   const char_type *_Ptr,
   streamsize _Count
);

参数

  • _Ptr
    对元素的指针插入。

  • _Count
    元素的数字要插入的。

返回值

元素数实际插入到流中。

备注

到 _Count 元素的受保护的虚成员函数插入到输出流中,就象通过重复调用 sputc,在 _Ptr的数组开头。字符插入输出流中停止,一旦所有 _Count 字符编写的,或者,如果调用 sputc(_Count) 将返回 traits::eof()。它返回实际插入的元素的数目。

要求

标头: <streambuf>

命名空间: std

请参见

参考

basic_streambuf Class

iostream编程

(mfc)约定