fixed
指定浮點數值在定點數標記法隨即顯示。
ios_base& fixed(
ios_base& _Str
);
參數
- _Str
參考型別 ios_base物件,或是從 ios_base繼承的型別。
傳回值
在 _Str 衍生物件的參考。
備註
fixed 是浮點數值(Floating-Point Number)的預設顯示的標記法。 使用科學標記法,科學記號 造成浮點隨即顯示。
操作工具有效地呼叫 _Str。setf(ios_base::fixed, ios_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