std::fixed, std::scientific, std::hexfloat, std::defaultfloat
来自 cppreference.com
定义在头文件 <ios> 中 |
||
std::ios_base& fixed( std::ios_base& str ); |
(1) | |
std::ios_base& scientific( std::ios_base& str ); |
(2) | |
std::ios_base& hexfloat( std::ios_base& str ); |
(3) | (自 C++11 起) |
std::ios_base& defaultfloat( std::ios_base& str ); |
(4) | (自 C++11 起) |
修改浮点输出的默认格式。
1) 将流 str 的
floatfield
设置为 fixed
,就像通过调用 str.setf(std::ios_base::fixed, std::ios_base::floatfield) 一样。2) 将流 str 的
floatfield
设置为 scientific
,就像通过调用 str.setf(std::ios_base::scientific, std::ios_base::floatfield) 一样。3) 将流 str 的
floatfield
设置为 fixed
和 scientific
,就像通过调用 str.setf(std::ios_base::fixed | std::ios_base::scientific, std::ios_base::floatfield) 一样。这启用十六进制浮点格式化。4) 将流 str 的
floatfield
设置为零,就像通过调用 str.unsetf(std::ios_base::floatfield) 一样。这启用默认的浮点格式化,它与 fixed 和 scientific 不同。这是一个 I/O 操纵符,它可以与表达式一起使用,例如 out << std::fixed,对于任何类型为 std::basic_ostream 的 out
(或者与表达式一起使用,例如 in >> std::scientific,对于任何类型为 std::basic_istream 的 in
)。
内容 |
[编辑] 参数
str | - | 对 I/O 流的引用 |
[编辑] 返回值
str(操作后的流的引用)。
[编辑] 备注
十六进制浮点格式化会忽略流精度规范,因为这是 std::num_put::do_put 规范所要求的。
这些操纵符不会影响浮点解析。
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <sstream> enum class cap { title, middle, end }; void print(const char* text, double num, cap c) { if (c == cap::title) std::cout << "┌──────────┬────────────┬──────────────────────────┐\n" "│ number │ iomanip │ representation │\n" "├──────────┼────────────┼──────────────────────────┤\n"; std::cout << std::left << "│ " << std::setw(8) << text << " │ fixed │ " << std::setw(24) << std::fixed << num << " │\n" << "│ " << std::setw(8) << text << " │ scientific │ " << std::setw(24) << std::scientific << num << " │\n" << "│ " << std::setw(8) << text << " │ hexfloat │ " << std::setw(24) << std::hexfloat << num << " │\n" << "│ " << std::setw(8) << text << " │ default │ " << std::setw(24) << std::defaultfloat << num << " │\n"; std::cout << (c != cap::end ? "├──────────┼────────────┼──────────────────────────┤\n" : "└──────────┴────────────┴──────────────────────────┘\n"); } int main() { print("0.0", 0.0, cap::title); print("0.01", 0.01, cap::middle); print("0.00001", 0.00001, cap::end); // Note; choose clang for correct output double f; std::istringstream("0x1.8p+0") >> f; std::cout << "Parsing 0x1.8p+0 gives " << f << '\n'; std::istringstream("0x1P-1022") >> f; std::cout << "Parsing 0x1P-1022 gives " << f << '\n'; }
输出
┌──────────┬────────────┬──────────────────────────┐ │ number │ iomanip │ representation │ ├──────────┼────────────┼──────────────────────────┤ │ 0.0 │ fixed │ 0.000000 │ │ 0.0 │ scientific │ 0.000000e+00 │ │ 0.0 │ hexfloat │ 0x0p+0 │ │ 0.0 │ default │ 0 │ ├──────────┼────────────┼──────────────────────────┤ │ 0.01 │ fixed │ 0.010000 │ │ 0.01 │ scientific │ 1.000000e-02 │ │ 0.01 │ hexfloat │ 0x1.47ae147ae147bp-7 │ │ 0.01 │ default │ 0.01 │ ├──────────┼────────────┼──────────────────────────┤ │ 0.00001 │ fixed │ 0.000010 │ │ 0.00001 │ scientific │ 1.000000e-05 │ │ 0.00001 │ hexfloat │ 0x1.4f8b588e368f1p-17 │ │ 0.00001 │ default │ 1e-05 │ └──────────┴────────────┴──────────────────────────┘ Parsing 0x1.8p+0 gives 1.5 Parsing 0x1P-1022 gives 2.22507e-308
[编辑] 参见
更改浮点精度 (函数) |