다음을 통해 공유


noshowpoint

부동 소수점 숫자의 소수 부분이 0의 정수 부분만 표시 됩니다.

ios_base& noshowpoint(
   ios_base& _Str
);

매개 변수

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

반환 값

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

설명

noshowpoint기본적으로 사용 됩니다. 사용 showpointprecision 소수점 뒤에 0을 표시 합니다.

효과적으로 manipulator를 호출 _Str.unsetf(ios_base::showpoint), 다음 반환 _Str.

예제

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

int main( ) 
{
   using namespace std;
   double f1= 5.000;
   cout << f1 << endl;   // noshowpoint is default
   cout.precision( 4 );
   cout << showpoint << f1 << endl;
   cout << noshowpoint << f1 << endl;
}
  

요구 사항

헤더: <ios>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙