CString类Format()的用法

    Format() 函数用于将数据转换为格式化的字符串输出

 

 

    举例如下;

 

 

      

     int   x   =   123;  
  CString   str;  
  str.Format("%d",   x);                   //   123  
  str.Format("%6d",   x);                 //       123  
  str.Format("%06d",   x);               //000123     ....不够6位  前面补0  这个比较实用
  str.Format("%x",   x);                   //7b  
  str.Format("%X",   x);                   //7B  
  str.Format("%04x",   x);               //007b  
   
  float   x   =   123.456;  
  str.Format("%f",   x);                   //   123.456  
  str.Format("%2.3f");                   //   123.456  
  str.Format("%4.2f");                   //     123.45

 

 

 

CString   errormessage;  
  errormessage.Format("連接數據庫失敗!/r/n錯誤信息:%s",e.ErrorMessage());

 

 

 

 

参考资料:

http://topic.csdn.net/t/20041012/09/3446594.html#

 

 

 

 

 

 

 

 

你可能感兴趣的:(float)