다음을 통해 공유


fixed

부동 소수점 숫자를 고정 소수점 표기법으로 표시 되도록 지정 합니다.

ios_base& fixed(
   ios_base& _Str
);

매개 변수

  • _Str
    참조 형식의 개체를 ios_base, 상속 형식 또는 ios_base.

반환 값

개체의 참조는 _Str 파생 됩니다.

설명

고정 기본 디스플레이 표기에 부동 소수점 숫자입니다.과학 부동 소수점 숫자를 과학적 표기법으로 표시 됩니다.

효과적으로 manipulator를 호출 _Str.setf(ios_base::fixed, ios_base::floatfield), and then returns _Str.

예제

// ios_fixed.cpp
// compile with: /EHsc
#include <iostream>

int main( ) 
{
   using namespace std;
   float i = 1.1F;

   cout << i << endl;   // fixed is the default
   cout << scientific << i << endl;
   cout.precision( 1 );
   cout << fixed << i << endl;
}
  

요구 사항

헤더: <ios>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙