次の方法で共有


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

入出力ストリームのプログラミング

入出力ストリームの規則