首页 > 代码库 > CString类Format()的用法?.xml

CString类Format()的用法?.xml

<style type="text/css"> pre{ line-height:1; color:#9f1d66; background-color:#f0f0f0; font-size:16px;}.sysFunc{color:#5d57ff;font-style:italic;font-weight:bold;} .selfFuc{color:#8e0ed3;} .bool{color:#008000;} .condition{color:#008000;font-weight:bold;} .key{color:#440080;} .var{color:#008000;font-style:italic;} .Digit{color:#000080;font-weight:bold;} .includePre{color:#661d9f;} .operator?{color:#fd1a53;font-weight:bold;} </style>

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());

本文使用?书画小说软件?发布,内容与软件无关,书画小说软件?更惬意的读、更舒心的写、更轻松的发布。

CString类Format()的用法?.xml