std:: fixed, std:: scientific, std:: hexfloat, std:: defaultfloat
|
ヘッダーで定義
<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以降) |
浮動小数点出力のデフォルト書式を変更します。
floatfield
を
fixed
に設定する。これは
str.
setf
(
std::
ios_base
::
fixed
,
std::
ios_base
::
floatfield
)
を呼び出した場合と同様である。
floatfield
を
scientific
に設定します。これは
str.
setf
(
std::
ios_base
::
scientific
,
std::
ios_base
::
floatfield
)
を呼び出した場合と同様です。
floatfield
を
fixed
と
scientific
の両方に同時に設定します。これは
str.
setf
(
std::
ios_base
::
fixed
|
std::
ios_base
::
scientific
,
std::
ios_base
::
floatfield
)
を呼び出した場合と同様です。これにより16進浮動小数点フォーマットが有効になります。
floatfield
をゼロに設定します。これは
str.
unsetf
(
std::
ios_base
::
floatfield
)
を呼び出した場合と同様です。これにより、固定小数点表記や科学技術表記とは異なる、デフォルトの浮動小数点書式設定が有効になります。
これはI/Oマニピュレータであり、
out
<<
std
::
fixed
のような式で呼び出すことができます(任意の
out
が
std::basic_ostream
型の場合)。または、
in
>>
std
::
scientific
のような式で呼び出すこともできます(任意の
in
が
std::basic_istream
型の場合)。
目次 |
パラメータ
| str | - | 参照するI/Oストリーム |
戻り値
str (操作後のストリームへの参照)。
注記
16進浮動小数点の書式設定は、仕様で要求される通り、ストリームの精度指定を無視します。 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); // 注意: 正しい出力を得るにはclangを選択してください 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
関連項目
|
浮動小数点精度を変更する
(関数) |