cout 格式化输出

来源:互联网 发布:云计算安全技术与应用 编辑:程序博客网 时间:2024/05/18 16:18

转自:http://blog.csdn.net/yockie/article/details/9104899


将 cout 的 flag 保存到变量, 以便修改后的恢复

[cpp] view plaincopy
  1. ostream::fmtflags old = cout.flag() ;        // 无参将返回当前 flag 值  
  2. cout.flag(old) ;                            // 恢复到原先保存的值  

将 bool 值以 literals 输出

[cpp] view plaincopy
  1. cout <<"numeric : " <<true <<" or " <<false <<endl ;              // 1 or 0  
  2. cout <<"literals : " <<boolalpha <<true <<" or " <<false <<endl ; // true or false  
  3. cout <<"literals : " <<boolalpha <<0 <<endl ;                     // 0    原因: 0 在cout中不等价于 false  
一旦我们使用 boolalpha 将改变 cout 对 bool 值的输出格式. 此后的 cout 都会将 bool 输出为 literals.


将 bool 值以 numeric 输出

[cpp] view plaincopy
  1. cout <<"numeric : " <<noboolalpha <<true <<" or " <<false <<endl ;// 1 or 0  
从此以后, cout 对 bool 值的输出将恢复 numeric 格式


指定 Integral Values 的 Base(进制)

[cpp] view plaincopy
  1. const int ival = 17 ;        // 'ival' is constant, so value never change  
  2. cout <<"oct : " <<oct <<ival <<endl ;        // 21 : 8 进制  
  3. cout <<"dec : " <<dec <<ival <<endl ;        // 17 : 10 进制  
  4. cout <<"hex : " <<hex <<ival <<endl ;        // 11 : 16 进制  
  5. cout <<"hex : " <<hex <<17.01 <<endl ;        // 17.01 : 不受影响  
如 boolalpha 一样, oct, dec, hex 也是 persistent(持续的). 一旦改变, 将影响后续的输出格式.


显示表明 Integer Values 的 Base

[cpp] view plaincopy
  1. cout <<showbase ;                            //打印整数值时显示进制  
  2. cout <<"oct : " <<oct <<ival <<endl ;        // 21 : 8 进制  
  3. cout <<"dec : " <<dec <<ival <<endl ;        // 017 : 10 进制  
  4. cout <<"hex : " <<hex <<ival <<endl ;        // 0x11 : 16 进制  
  5. cout <<"hex : " <<hex <<17.01 <<endl ;        // 17.01 : 不受影响  
  6. cout <<noshowbase ;                            // Reset state of the stream  
若想改变16进制字母的大小, 可以结合 uppercase(大写显示进制,如0X)/nouppercase(小写显示进制,如0x)

[cpp] view plaincopy
  1. cout <<showbase <<uppercase ;  
  2. cout <<"hex : " <<hex <<15 <<endl ;            // 0XF 大写形式  
  3. cout <<nouppercase ;  
  4. cout <<"hex : " <<hex <<15 <<endl ;            // 0xf 小写形式  
showbase 与 noshowbase 的作用周期也是 persistent

对于 float/double 型, 有三种格式化控制

一: 输出精度 precision : by default is 6 pricision
   控制了至多一共会输出多少个数字.  
   当要输出的数字多余指定的值时, 将发生 四舍五入(rounded);  
   当要输出的数字少于指定的值时, 则实际输出的数字个数将少于指定值.

[cpp] view plaincopy
  1. // cout.pricision(4) ;                         // 等价于 cout <<setprecision(4) ;  
  2. cout <<setprecision(4) <<12.345678 <<endl ;    // 12.35  rounded!  
  3. cout <<setprecision(10) <<12.345678 <<endl ;   // 12.345678 其实内部发生了 rounded, 而结果正好进位, 与原值相同  
  4. cout <<cout.precision() <<endl ;               // 输出当前精度  
二: 表现形式 notation : 'very large and very small values are printed using scientific notation. other values use fixed decimal.'
notation 控制了输出的形式 : 科学计数法(scientific) 和 定点小数(fixed)
[cpp] view plaincopy
  1. float f = 101 / 6.0 ;  
  2. cout <<fixed <<f <<endl ;           // 16.83334 : 小数点后共6位  
  3. cout <<scientific <<f <<endl ;      // 1.683333e+001 : 小数点后共6位  
恢复到初始状态

[cpp] view plaincopy
  1. cout.unsetf(ostream::floatfield) ;  // Retrieve to default handling for notation  
  2. cout <<f <<endl ;                   // 16.8333 : 所有数字共6位  

三: 输出十进制浮点 '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.'

[cpp] view plaincopy
  1. cout <<10.0 <<endl ;                // 10  
  2. cout <<showpoint <<10.0 <<endl ;    // 10.0000  
  3. 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.

[cpp] view plaincopy
  1. cout <<setw(10) <<12.3 <<endl ;     // ______12.3  
  2. cout <<setw(10) <<12 <<3 <<endl ;   // ________123  
  3.   
  4. cout <<setw(3) <<12.345 <<endl ;    // If the total output is more than 3, it can be extended  

left to left-justify the output.

[cpp] view plaincopy
  1. cout <<left ;                                 // left-justify  
  2. cout <<setw(5) <<12 <<setw(5) <<34 <<endl ;   // 12___34___  


right to right-justify the output. Output is right-justified bu default.
[cpp] view plaincopy
  1. cout <<right ;                                // By default  
  2. 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) 

[cpp] view plaincopy
  1. cout <<internal ;               // By default  
  2. 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.

[cpp] view plaincopy
  1. cout <<setfill('*') ;          // By default  
  2. cout <<setw(5) <<12 <<endl ;   // 12___34___  


Header Files

[cpp] view plaincopy
  1. Manipulators Defined in <iomanip>  
  2. setfill(char ch) Fill whitespace with 'ch'  
  3. setprecision(int n) Set floating-point precision to 'n'  
  4. setw(int w) Read or write value to 'w' characters  
  5. setbase(int b) Output integers in base 'b'(only 'b' is 8/10/16 could the function work)  

0 0
原创粉丝点击