CString::Format 格式化双精度为整型数值

类别:VC语言 点击:0 评论:0 推荐:
CString::Format("%d",xx);其中xx不能为双精度,不然会转化错误,应该使用CString::Format("%d",(LONG)xx);
例:
DOUBLE d = 22.443;
CString str;
str.Format("%d", d);转化后的str = "1924145349",这是错误的。

本文地址:http://com.8s8s.com/it/it743.htm