C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 输入/输出操纵符
- std::ios_base
- std::ios_base::failure
- std::ios_base::event_callback
- std::ios_base::seekdir
- std::ios_base::event
- std::ios_base::fmtflags
- std::ios_base::iostate
- std::ios_base::iword
- std::ios_base::pword
- std::ios_base::register_callback
- std::ios_base::sync_with_stdio
- std::ios_base::Init
- std::ios_base::openmode
- std::ios_base::precision
- std::ios_base::width
- std::ios_base::imbue
- std::ios_base::getloc
- std::ios_base::xalloc
- std::ios_base::ios_base
- std::ios_base::~ios_base
- std::ios_base::flags
- std::ios_base::setf
- std::ios_base::unsetf
- C 风格文件输入/输出
- std::basic_streambuf
- std::basic_filebuf
- std::basic_stringbuf
- std::strstreambuf
- std::basic_syncbuf
- std::basic_ios
- std::basic_istream
- std::basic_osyncstream
- std::basic_ostream
- std::basic_iostream
- std::basic_ifstream
- std::basic_ofstream
- std::basic_fstream
- std::basic_istringstream
- std::basic_ostringstream
- std::basic_stringstream
- std::istrstream
- std::ostrstream
- std::strstream
- std::streamoff
- std::streamsize
- std::fpos
- std::iostream_category
- std::io_errc
- std::cin, std::wcin
- std::cout, std::wcout
- std::cerr, std::wcerr
- std::clog, std::wclog
- 注释
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >输入/输出库 >std::ios_base > std::ios_base::fmtflags
std::ios_base::fmtflags
typedef /*implementation defined*/ fmtflags; |
||
static constexpr fmtflags dec = /*implementation defined*/ static constexpr fmtflags oct = /*implementation defined*/ |
||
static constexpr fmtflags left = /*implementation defined*/ static constexpr fmtflags right = /*implementation defined*/ |
||
static constexpr fmtflags scientific = /*implementation defined*/ static constexpr fmtflags fixed = /*implementation defined*/ |
||
static constexpr fmtflags boolalpha = /*implementation defined*/ static constexpr fmtflags showbase = /*implementation defined*/ |
||
指定可用的格式化标志。它是位掩码类型 (BitmaskType) 。定义下列常量:
常量 | 解释 |
dec | 为整数 I/O 使用十进制底:见 std::dec |
oct | 为整数 I/O 使用八进制底:见 std::oct |
hex | 为整数 I/O 使用十六进制底:见 std::hex |
basefield | dec|oct|hex 。适用于掩码运算 |
left | 左校正(添加填充字符到右):见 std::left |
right | 右校正(添加填充字符到左):见 std::right |
internal | 内部校正(添加填充字符到内部选定点):见 std::internal |
adjustfield | left|right|internal 。适用于掩码运算 |
scientific | 用科学记数法生成浮点类型,或若与 fixed 组合则用十六进制记法:见 std::scientific |
fixed | 用定点记法生成浮点类型,或若与 scientific 组合则用十六进制记法:见 std::fixed |
floatfield | scientific|fixed 。适用于掩码运算 |
boolalpha | 以字母数字格式插入并释出 bool 类型:见 std::boolalpha |
showbase | 生成为整数输出指示数字基底的前缀,货币 I/O 中要求现金指示器:见 std::showbase |
showpoint | 无条件为浮点数输出生成小数点字符:见 std::showpoint |
showpos | 为非负数值输出生成 + 字符,见 std::showpos |
skipws | 在具体输入操作前跳过前导空白符:见 std::skipws |
unitbuf | 在每次输出操作后冲入输出:见 std::unitbuf |
uppercase | 在具体输出的输出操作中以大写等价替换小写字符:见 std::uppercase |
示例
下列示例展示打印同一结果的数种不同方式。
#include <iostream> int main() { int num = 150; // 以 fmtflags 为类成员常量: std::cout.setf(std::ios_base::hex, std::ios_base::basefield); std::cout.setf(std::ios_base::showbase); std::cout << num << '\n'; // 以 fmtflags 为继承的类成员常量: std::cout.setf (std::ios::hex , std::ios::basefield); std::cout.setf (std::ios::showbase); std::cout << num << '\n'; // 以 fmtflags 为对象成员常量: std::cout.setf(std::cout.hex, std::cout.basefield); std::cout.setf(std::cout.showbase); std::cout << num << '\n'; // 以 fmtflags 为类型: std::ios_base::fmtflags ff; ff = std::cout.flags(); ff &= ~std::cout.basefield; // 解除设置 basefield 位 ff |= std::cout.hex; // 设置 hex ff |= std::cout.showbase; // 设置 showbase std::cout.flags(ff); std::cout << num << '\n'; // 不使用 fmtflags ,但使用操纵符: std::cout << std::hex << std::showbase << num << '\n'; }
输出:
0x96 0x96 0x96 0x96 0x96
参阅
管理格式标志 (公开成员函数) | |
设置特定格式标志 (公开成员函数) | |
清除特定格式的标志 (公开成员函数) | |
更改用于整数 I/O 的基数 (函数) | |
更改填充字符 (函数模板) | |
(C++11)(C++11) |
更改用于浮点 I/O 的格式化 (函数) |
控制是否使用前缀指示数值基数 (函数) | |
在布尔值的文本和数值表示间切换 (函数) | |
控制是否将 + 号与非负数一同使用 (函数) | |
控制浮点表示是否始终包含小数点 (函数) | |
控制是否每次操作后冲洗输出 (函数) | |
控制是否跳过输入上的前导空白符 (函数) | |
控制一些输出操作是否使用大写字母 (函数) |