命名空间
变体
操作

std::basic_streambuf<CharT,Traits>::sputc

来自 cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
 
 
int_type sputc( char_type ch );

将一个字符写入输出序列。

如果输出序列的写入位置不可用(缓冲区已满),则调用 overflow(ch)

内容

[编辑] 参数

ch - 要写入的字符

[编辑] 返回值

写入的字符,成功时使用 Traits::to_int_type(ch) 转换为 int_type

Traits::eof()(由 overflow() 返回)失败时。

[编辑] 示例

#include <iostream>
#include <sstream>
 
int main()
{
    std::ostringstream s;
    s.rdbuf()->sputc('a');
    std::cout << s.str() << '\n';
}

输出

a

[编辑] 另请参见

调用 xsputn()
(public member function) [编辑]