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
参考
<sstream>
wstringbuf
类
<sstream>
std::
wstringbuf
typedef basic_stringbuf<wchar_t> wstringbuf;
字符串流缓冲区(宽字符)
wstreambuf
wstringbuf
用于从
wstring
对象读取和向其写入的流缓冲区。
此类对象在内部维护一个宽字符序列,它们将其用作“关联的输入序列”和/或“关联的输出序列”。 可以使用成员函数
str
从
wstring
对象初始化内部序列,或者将其复制到
wstring
对象。
通过该类中重写的
wstreambuf
虚成员提供的接口,将字符的内部序列提供给流。
成员类型
成员类型
定义
char_type
wchar_t
traits_type
char_traits
<wchar_t>
allocator_type
allocator
<wchar_t>
int_type
wint_t
pos_type
wstreampos
off_type
streamoff
公开成员函数
注意:此处链接了其基本模板(
basic_stringbuf
)的成员引用。
(构造函数)
构造对象
(公开成员函数)
str
获取/设置内容
(公共成员函数)
从
wstreambuf
继承的公有成员函数
区域设置
:
pubimbue
注入 locale
(公开成员函数)
getloc
获取当前 locale
(公开成员函数)
缓冲区管理和定位
:
pubsetbuf
设置缓冲区数组
(公有成员函数)
pubseekoff
将内部位置指针设置为相对位置
(公有成员函数)
pubseekpos
将内部位置指针设置为绝对位置
(公有成员函数)
pubsync
同步流缓冲区
(公有成员函数)
输入函数 (get)
:
in_avail
获取可读的字符数
(公开成员函数)
snextc
前进到下一个位置并获取字符
(公有成员函数)
sbumpc
获取当前字符并前进到下一个位置
(公有成员函数)
sgetc
获取当前字符
(公有成员函数)
sgetn
获取字符序列
(公有成员函数)
sputbackc
放回字符
(公共成员函数)
sungetc
后退当前位置
(公有成员函数)
输出函数 (put)
:
sputc
放置字符并前进到下一位置
(公开成员函数)
sputn
放置字符序列
(公有成员函数)
受保护的虚函数重写
注意:此处链接了其基本模板(
basic_stringbuf
)的成员引用。
setbuf
设置缓冲区
(保护虚成员函数)
seekoff
将位置指针设置到相对位置
(受保护的虚成员函数)
seekpos
将位置指针设置为绝对位置
(受保护的虚成员函数)
underflow
获取字符(受保护的虚成员函数)
pbackfail
放回字符
(受保护的虚成员函数)
overflow
放入字符
(保护的虚成员函数)
此类还继承了其他非虚的或未被重写的保护成员。有关更多详细信息,请参阅基类
wstreambuf
。