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>
<sstream>
类模板
basic_istringstream
basic_ostringstream
basic_stringbuf
basic_stringstream
类
istringstream
ostringstream
stringbuf
stringstream
wistringstream
wostringstream
wstringbuf
wstringstream
stringbuf
stringbuf::stringbuf
公有成员
stringbuf::str
虚拟成员
stringbuf::overflow
stringbuf::pbackfail
stringbuf::seekoff
stringbuf::seekpos
stringbuf::setbuf
stringbuf::underflow
参考
<sstream>
stringbuf
类
<sstream>
std
::stringbuf
typedef basic_stringbuf<char> stringbuf;
字符串流缓冲区
streambuf
stringbuf
用于从
string
对象读取和写入的流缓冲区。
此类对象在其内部维护一个字符序列,它们将此序列用作其
关联输入序列
和/或
关联输出序列
。内部序列可以从
string
对象初始化,或复制到
string
对象中,方法是使用成员函数
str
。
通过此类重写的、从
streambuf
继承而来的虚成员提供的接口,流可以访问内部字符序列。
成员类型
该类声明了以下成员类型
成员类型
定义
char_type
char
traits_type
char_traits
<char>
allocator_type
allocator
<char>
int_type
int
pos_type
streampos
off_type
streamoff
公开成员函数
(构造函数)
构造一个字符串流缓冲区对象(
公共成员函数
)
str
获取/设置字符串内容(
公共成员函数
)
从
streambuf
继承的公共成员函数
区域设置
:
pubimbue
注入 locale
(公开成员函数)
getloc
获取当前 locale
(公开成员函数)
缓冲区管理和定位
:
pubsetbuf
设置缓冲区数组
(公有成员函数)
pubseekoff
将内部位置指针设置为相对位置
(公有成员函数)
pubseekpos
将内部位置指针设置为绝对位置
(公有成员函数)
pubsync
同步流缓冲区
(公有成员函数)
输入函数 (get)
:
in_avail
获取可供读取的字符数
(公有成员函数)
snextc
前进到下一个位置并获取字符
(公有成员函数)
sbumpc
获取当前字符并前进到下一个位置
(公有成员函数)
sgetc
获取当前字符
(公有成员函数)
sgetn
获取字符序列
(公有成员函数)
sputbackc
放回字符
(公共成员函数)
sungetc
后退当前位置
(公有成员函数)
输出函数 (put)
:
sputc
在当前放置位置存储字符并增加放置指针
(公有成员函数)
sputn
放置字符序列
(公有成员函数)
受保护的虚函数重写
setbuf
设置缓冲区
(保护虚成员函数)
seekoff
将位置指针设置到相对位置
(受保护的虚成员函数)
seekpos
将位置指针设置为绝对位置
(受保护的虚成员函数)
underflow
获取字符(受保护的虚成员函数)
pbackfail
放回字符
(受保护的虚成员函数)
overflow
写入字符(
受保护的虚成员函数
)
该类还继承了其他非虚的或未被重写的受保护成员。有关更多详细信息,请参阅基类
streambuf
。