名稱空間
變體
操作

std::fixed, std::scientific, std::hexfloat, std::defaultfloat

來自 cppreference.com
< cpp‎ | io‎ | manip
 
 
 
輸入/輸出操縱器
浮點格式化
fixedscientifichexfloatdefaultfloat
(C++11)(C++11)
整數格式化
布林格式化
欄位寬度和填充控制
其他格式化
空白字元處理
輸出重新整理
(C++20)  

狀態標誌操作
時間與金錢 I/O
(C++11)
(C++11)
(C++11)
(C++11)
帶引號的操縱器
(C++14)
 
定義於標頭檔案 <ios>
(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) 將流 strfloatfield 設定為 fixed,如同呼叫 str.setf(std::ios_base::fixed, std::ios_base::floatfield)
2) 將流 strfloatfield 設定為 scientific,如同呼叫 str.setf(std::ios_base::scientific, std::ios_base::floatfield)
3) 同時將流 strfloatfield 設定為 fixedscientific,如同呼叫 str.setf(std::ios_base::fixed | std::ios_base::scientific, std::ios_base::floatfield)。這會啟用十六進位制浮點格式。
4) 將流 strfloatfield 設定為零,如同呼叫 str.unsetf(std::ios_base::floatfield)。這會啟用預設的浮點格式,它不同於 fixed 和 scientific 格式。

這是一個 I/O 運算子,可以透過表示式(例如對於型別為 std::basic_ostream 的任何 out,使用 out << std::fixed)或表示式(例如對於型別為 std::basic_istream 的任何 in,使用 in >> std::scientific)呼叫它。

目錄

[編輯] 引數

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

[編輯] 參閱

更改浮點精度
(function) [編輯]