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>
<ios>
类型
basic_ios
fpos
C++11
io_errc
ios
ios_base
streamoff
streampos
streamsize
wios
wstreampos
操纵符
boolalpha
dec
C++11
defaultfloat
fixed
hex
C++11
hexfloat
internal
left
noboolalpha
noshowbase
noshowpoint
noshowpos
noskipws
nounitbuf
nouppercase
oct
right
scientific
showbase
showpoint
showpos
skipws
unitbuf
uppercase
其他函数
C++11
iostream_category
ios
ios::~ios
ios::ios
公有成员
ios::bad
ios::clear
ios::copyfmt
ios::eof
ios::exceptions
ios::fail
ios::fill
ios::good
ios::imbue
ios::narrow
ios::operator bool
ios::operator!
ios::rdbuf
ios::rdstate
ios::setstate
ios::tie
ios::widen
受保护成员
ios::init
C++11
ios::move
C++11
ios::set_rdbuf
C++11
ios::swap
参考
<ios>
ios
init
protected member function
<ios> <iostream>
std::
ios
::init
protected:void init (streambuf* sb);
Initialize object
初始化流的内部标志和成员变量。
派生类应在其首次使用或销毁之前(通常在构造期间)调用此受保护的成员函数。
内部状态的初始化方式使得以下每个成员返回以下值:
成员函数,逐个字符打印字符串的内容
返回值
rdbuf
sb
tie
0
rdstate
如果
sb
不是空指针,则为
goodbit
,否则为
badbit
exceptions
goodbit
标志
skipws | dec
宽度
0
precision
6
fill
' '
(空格)
getloc
locale
()
的副本
初始化时,
内部可扩展数组
(
iword
、
pword
)是空的。
参数
sb
指向
streambuf
对象的指针。
返回值
无
数据竞争
修改流对象。指向
sb
的对象可能会被访问和/或修改。
并发访问同一流对象或流缓冲区可能导致数据竞争。
异常安全
基本保证:
如果抛出异常,流处于有效状态。
另见
ios::ios
构造对象
(公开成员函数)