C++格式化輸出
阿新 • • 發佈:2019-02-10
將 cout 的 flag 儲存到變數, 以便修改後的恢復
將 bool 值以 literals 輸出
一旦我們使用 boolalpha 將改變 cout 對 bool 值的輸出格式. 此後的 cout 都會將 bool 輸出為 literals.
將 bool 值以 numeric 輸出
從此以後, cout 對 bool 值的輸出將恢復 numeric 格式
指定 Integral Values 的 Base
顯示錶明 Integer Values 的 Base
若想改變16進位制字母的大小, 可以結合 uppercase/nouppercase
cout <<showbase <<uppercase ;cout <<"hex : "<<hex <<15<<endl ; // 0XF 大寫形式 cout <<nouppercase ;
cout <<"hex : "<<hex <<15<<endl ; // 0xf 小寫形式
showbase 與 noshowbase 的作用週期也是 persistent
對於 float/double 型, 有三種格式化控制
一: 輸出精度 precision : by default is 6pricision
控制了至多一共會輸出多少個數字. 當要輸出的數字多餘指定的值時, 將發生 四捨五入(rounded); 當要輸出的數字少於指定的值時, 則實際輸出的數字個數將少於指定值.
// cout.pricision(4) ; // 等價於 cout <<setprecision(4) ;cout <<setprecision(4) <<12.345678<<endl ; // 12.35 rounded!cout <<setprecision(10) <<12.345678<<endl ; // 12.345678 其實內部發生了 rounded, 而結果正好進位, 與原值相同cout <<cout.precision() <<endl ; // 輸出當前精度
二: 表現形式 notation : 'very large and very small values are printed using scientific notation. other values use fixed decimal.' notation 控制了輸出的形式 : 科學計數法(scientific) 和 定點小數(fixed)
float f =101/6.0 ;
cout <<fixed<<f <<endl ; // 16.83334 : 小數點後共6位cout <<scientific <<f <<endl ; // 1.683333e+001 : 小數點後共6位 恢復到初始狀態
cout.unsetf(ostream::floatfield) ; // Retrieve to default handling for notationcout <<f <<endl ; // 16.8333 : 所有數字共6位
三: 輸出十進位制浮點 'By default, when the fractional part of a floating-point value is 0, the decimal point is not displayed. Theshowpoint manipulator forces the decimal point ot be printed.'
cout <<10.0<<endl ; // 10cout <<showpoint <<10.0<<endl ; // 10.0000cout <<noshowpoint <<endl ; // Revert to default handling of decimal
輸出填充 Padding the Output
setw to specify the minimum space for the next numeric or string value.
cout <<setw(10) <<12.3<<endl ; // ______12.3cout <<setw(10) <<12<<3<<endl ; // ________123
cout <<setw(3) <<12.345<<endl ; // If the total output is more than 3, it can be extended
left to left-justify the output.
cout <<left ; // left-justify cout <<setw(5) <<12<<setw(5) <<34<<endl ; // 12___34___
right to right-justify the output. Output is right-justified bu default.
cout <<right ; // By defaultcout <<setw(5) <<12<<setw(5) <<34<<endl ; // 12___34___
internal controls placement of the sign on negative value. internal left-justifies the sign and right-justifies the value, padding any intervening space with blanks.(if setfill not set)
cout <<internal ; // By defaultcout <<setw(5) <<-12<<endl ; // 12___34___
setfill lets us specify an alternative character to use when padding the output. By default, the value is a space.
cout <<setfill('*') ; // By defaultcout <<setw(5) <<12<<endl ; // 12___34___
Header Files
Manipulators Defined in <iomanip> setfill(char ch) Fill whitespace with 'ch'
setprecision(int n) Set floating-point precision to 'n'
setw(int w) Read or write value to 'w' characters
setbase(int b) Output integers inbase'b'(only 'b'is8/10/16 could the function work)