Namespaces
Variants

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

From cppreference.net
< cpp ‎ | io ‎ | manip
Input/output manipulators
Floating-point formatting
fixed scientific hexfloat defaultfloat
(C++11) (C++11)
Integer formatting
Boolean formatting
Field width and fill control
Other formatting
Whitespace processing
Output flushing
Status flags manipulation
Time and money I/O
(C++11)
(C++11)
(C++11)
(C++11)
Quoted manipulator
(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) 스트림 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 ) 를 호출한 것처럼 동작합니다. 이는 16진수 부동 소수점 형식화를 활성화합니다.
4) 스트림 str floatfield str. unsetf ( std:: ios_base :: floatfield ) 를 호출하는 것처럼 0으로 설정합니다. 이는 고정 및 과학적 표기법과 다른 기본 부동 소수점 서식을 활성화합니다.

이것은 I/O 조정자이며, out << std :: fixed 와 같은 표현식으로 out std::basic_ostream 타입인 모든 출력 스트림에 대해 호출될 수 있습니다 (또는 in >> std :: scientific 와 같은 표현식으로 in std::basic_istream 타입인 모든 입력 스트림에 대해 호출될 수 있습니다).

목차

매개변수

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

참고 항목

부동 소수점 정밀도를 변경합니다
(함수)