共用方式為


fixed

指定浮點數值在固定小數點附註隨即顯示。

ios_base& fixed( 
   ios_base& _Str 
);

參數

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

傳回值

對 _Str 衍生的物件參考。

備註

fixed 是浮點數的預設顯示附註。 使用科學標記法,科學 造成浮點隨即顯示。

操作工具有效地呼叫 _Str。setf(ios_base::fixedios_base::floatfield),則傳回 _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 慣例