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> <iostream>
std::
manipulators
流操纵算子
操纵算子是专门设计的函数,用于配合流对象的插入(
<<
)和提取(
>>
)运算符一起使用,例如
1
cout << boolalpha;
它们仍然是常规函数,也可以像任何其他函数一样调用,使用流对象作为参数,例如
1
boolalpha (cout);
操纵算子用于更改流上的格式化参数,以及插入或提取某些特殊字符。
基本格式标志
这些操纵算子可以在输入和输出流上使用,尽管许多操纵算子仅在应用于输出或输入流时才有效。
独立标志(打开)
:
boolalpha
布尔值的字母数字表示
(函数)
showbase
显示数值基数前缀
(函数)
showpoint
显示小数点
(函数)
showpos
显示正号
(函数)
skipws
跳过空白字符
(函数)
unitbuf
插入后刷新缓冲区
(函数)
uppercase
生成大写字母
(函数)
独立标志(关闭)
:
noboolalpha
不使用布尔值的字母数字表示
(函数)
noshowbase
不显示数值基数前缀
(函数)
noshowpoint
不显示小数点
(函数)
noshowpos
不显示正号
(函数)
noskipws
不跳过空白字符
(函数)
nounitbuf
插入后不强制刷新
(函数)
nouppercase
不生成大写字母
(函数)
数值基数格式标志(“basefield”标志)
:
dec
使用十进制
(函数)
hex
使用十六进制
(函数)
oct
使用八进制
(函数)
浮点格式标志(“floatfield”标志)
:
fixed
使用定点浮点表示法
(函数)
scientific
使用科学计数浮点表示法
(函数)
调整格式标志(“adjustfield”标志)
:
internal
通过在内部位置插入字符来调整字段
(函数)
left
将输出左对齐
(函数)
right
将输出右对齐
(函数)
输入操纵算子
ws
提取空白字符
(函数)
输出操纵算子
endl
插入换行符并刷新
(函数)
ends
插入空字符
(函数)
flush
刷新流缓冲区
(函数)
参数化操纵算子
这些函数在用作操纵算子时需要参数。 它们需要显式包含头文件
<iomanip>
.
setiosflags
设置格式标志
(函数)
resetiosflags
重置格式标志
(函数)
setbase
设置基数字段标志
(函数)
setfill
设置填充字符
(函数)
setprecision
设置小数精度
(函数)
setw
设置字段宽度
(函数)