basic_streambuf::sputc

将字符放到流。

int_type sputc(
   char_type _Ch
);

参数

  • _Ch
    字符。

返回值

返回字符,因此,如果成功。

备注

如果 write position 可用,成员函数在编写的存储位置 _Ch,增加输出区域的下指针,并返回 traits_type::to_int_type(_Ch)。否则,它将返回 溢出(_Ch)。

示例

// basic_streambuf_sputc.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>

int main( ) 
{
   using namespace std;

   int i = cout.rdbuf( )->sputc( 'a' );
   cout << endl << ( char )i << endl;
}
  

要求

标头: <streambuf>

命名空间: std

请参见

参考

basic_streambuf Class

iostream编程

(mfc)约定