COUT格式化輸出

將 cout 的 flag 保存到變量, 以便修改后的恢復(fù)

ostream::fmtflags old = cout.flag() ;        // 無(wú)參將返回當(dāng)前 flag 值  
cout.flag(old) ;                            // 恢復(fù)到原先保存的值  

將 bool 值以 literals 輸出

cout <<"numeric : " <<true <<" or " <<false <<endl ;              // 1 or 0  
cout <<"literals : " <<boolalpha <<true <<" or " <<false <<endl ; // true or false  
cout <<"literals : " <<boolalpha <<0 <<endl ;                     // 0    原因: 0 在cout中不等價(jià)于 false  

一旦我們使用 boolalpha 將改變 cout 對(duì) bool 值的輸出格式. 此后的 cout 都會(huì)將 bool 輸出為 literals.

將 bool 值以 numeric 輸出

cout <<"numeric : " <<noboolalpha <<true <<" or " <<false <<endl ;// 1 or 0  

從此以后, cout 對(duì) bool 值的輸出將恢復(fù) numeric 格式

指定 Integral Values 的 Base(進(jìn)制)

const int ival = 17 ;        // 'ival' is constant, so value never change  
cout <<"oct : " <<oct <<ival <<endl ;        // 21 : 8 進(jìn)制  
cout <<"dec : " <<dec <<ival <<endl ;        // 17 : 10 進(jìn)制  
cout <<"hex : " <<hex <<ival <<endl ;        // 11 : 16 進(jìn)制  
cout <<"hex : " <<hex <<17.01 <<endl ;        // 17.01 : 不受影響  

如 boolalpha 一樣, oct, dec, hex 也是 persistent(持續(xù)的). 一旦改變, 將影響后續(xù)的輸出格式.

顯示表明 Integer Values 的 Base

cout <<showbase ;                            //打印整數(shù)值時(shí)顯示進(jìn)制  
cout <<"oct : " <<oct <<ival <<endl ;        // 21 : 8 進(jìn)制  
cout <<"dec : " <<dec <<ival <<endl ;        // 017 : 10 進(jìn)制  
cout <<"hex : " <<hex <<ival <<endl ;        // 0x11 : 16 進(jìn)制  
cout <<"hex : " <<hex <<17.01 <<endl ;        // 17.01 : 不受影響  
cout <<noshowbase ;                            // Reset state of the stream  

若想改變16進(jìn)制字母的大小, 可以結(jié)合 uppercase(大寫顯示進(jìn)制,如0X)/nouppercase(小寫顯示進(jìn)制,如0x)

cout <<showbase <<uppercase ;  
cout <<"hex : " <<hex <<15 <<endl ;            // 0XF 大寫形式  
cout <<nouppercase ;  
cout <<"hex : " <<hex <<15 <<endl ;            // 0xf 小寫形式  

showbase 與 noshowbase 的作用周期也是 persistent
對(duì)于 float/double 型, 有三種格式化控制
一: 輸出精度 precision : by default is 6 pricision 控制了至多一共會(huì)輸出多少個(gè)數(shù)字. 當(dāng)要輸出的數(shù)字多余指定的值時(shí), 將發(fā)生 四舍五入(rounded); 當(dāng)要輸出的數(shù)字少于指定的值時(shí), 則實(shí)際輸出的數(shù)字個(gè)數(shù)將少于指定值.

// cout.pricision(4) ;                         // 等價(jià)于 cout <<setprecision(4) ;  
cout <<setprecision(4) <<12.345678 <<endl ;    // 12.35  rounded!  
cout <<setprecision(10) <<12.345678 <<endl ;   // 12.345678 其實(shí)內(nèi)部發(fā)生了 rounded, 而結(jié)果正好進(jìn)位, 與原值相同  
cout <<cout.precision() <<endl ;               // 輸出當(dāng)前精度  

二: 表現(xiàn)形式 notation : 'very large and very small values are printed using scientific notation. other values use fixed decimal.'notation 控制了輸出的形式 : 科學(xué)計(jì)數(shù)法(scientific) 和 定點(diǎn)小數(shù)(fixed)

float f = 101 / 6.0 ;  
cout <<fixed <<f <<endl ;           // 16.83334 : 小數(shù)點(diǎn)后共6位  
cout <<scientific <<f <<endl ;      // 1.683333e+001 : 小數(shù)點(diǎn)后共6位  

恢復(fù)到初始狀態(tài)

cout.unsetf(ostream::floatfield) ;  // Retrieve to default handling for notation  
cout <<f <<endl ;                   // 16.8333 : 所有數(shù)字共6位  

三: 輸出十進(jìn)制浮點(diǎn) 'By default, when the fractional part of a floating-point value is 0, the decimal point is not displayed. The showpoint manipulator forces the decimal point ot be printed.'

cout <<10.0 <<endl ;                // 10  
cout <<showpoint <<10.0 <<endl ;    // 10.0000  
cout <<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.3  
cout <<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 default  
cout <<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 default  
cout <<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 default  
cout <<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 in base 'b'(only 'b' is 8/10/16 could the function work)  

輸出保留兩位小數(shù)

cout<<fixed<<setprecision(2)<<3.1415926<<endl;

【轉(zhuǎn)自:http://www.cnblogs.com/walfud/articles/2047096.html

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

推薦閱讀更多精彩內(nèi)容