共用方式為


noshowpoint

顯示的小數部分是零浮點數的整數部分。

ios_base& noshowpoint( 
   ios_base& _Str 
);

參數

  • _Str
    參考型別 ios_base物件,或是繼承自 ios_base的型別。

傳回值

對 _Str 衍生的物件參考。

備註

預設為noshowpoint 開啟;使用 showpoint精確度。 在小數點後顯示零。

操作工具有效地呼叫 _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 慣例