cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<streambuf>
basic_streambuf
streambuf
wstreambuf
streambuf
streambuf::~streambuf
streambuf::streambuf
公有成员
streambuf::getloc
streambuf::in_avail
streambuf::pubimbue
streambuf::pubseekoff
streambuf::pubseekpos
streambuf::pubsetbuf
streambuf::pubsync
streambuf::sbumpc
streambuf::sgetc
streambuf::sgetn
streambuf::snextc
streambuf::sputbackc
streambuf::sputc
streambuf::sputn
streambuf::sungetc
受保护成员
streambuf::eback
streambuf::egptr
streambuf::epptr
streambuf::gbump
streambuf::gptr
C++11
streambuf::operator=
streambuf::pbase
streambuf::pbump
streambuf::pptr
streambuf::setg
streambuf::setp
C++11
streambuf::swap
虚保护成员
streambuf::imbue
streambuf::overflow
streambuf::pbackfail
streambuf::seekoff
streambuf::seekpos
streambuf::setbuf
streambuf::showmanyc
streambuf::sync
streambuf::uflow
streambuf::underflow
streambuf::xsgetn
streambuf::xsputn
参考
<streambuf>
streambuf
overflow
受保护的虚成员函数
<streambuf> <iostream>
std::
streambuf
::overflow
int overflow (int c = EOF);
在溢出时放置字符
其他成员函数调用此虚函数,用于在不更改当前位置的情况下将字符放入
受控输出序列
。
当
写指针
(
pptr
)处没有可用写位置时,公共成员函数(如
sputc
)会调用它来写入字符。
在
streambuf
中的默认行为是始终返回
EOF
(表示失败),但派生类可以覆盖此行为,尝试直接写入字符和/或修改
pptr
和其他内部指针,以便提供更多存储空间,可能将未写入的字符写入
受控输出序列
。both
filebuf
and
stringbuf
override this virtual member function.
参数
c
要放置的字符。
如果这是
文件尾
值(
EOF
),则不放置字符,但会尝试调用此函数的所有其他效果。
返回值
成功时,将使用成员
traits_type::to_int_type
将放置的字符转换为
int_type
类型的值并返回。
否则,如果
c
参数传递的是此值,或者用于指示失败,则返回
文件尾
值(
EOF
)(某些实现可能会抛出异常)。
数据竞争
修改*流缓冲区*对象。
同时访问同一*流缓冲区*对象可能会导致数据竞争。
异常安全
基本保证:
如果抛出异常,*流缓冲区*处于有效状态。
另见
streambuf::sputc
在当前放置位置存储字符并增加放置指针
(公有成员函数)
streambuf::sputn
放置字符序列
(公有成员函数)
filebuf::overflow
在上溢时放置字符
(保护虚成员函数)
stringbuf::overflow
放置字符
(受保护的虚成员函数)