L luyl Unregistered / Unconfirmed GUEST, unregistred user! 2003-09-22 #1 如何将一个CHAR、INT、FLOAT类型转换为字符串! 请写清函数,谢谢
Q qsoft.51.net Unregistered / Unconfirmed GUEST, unregistred user! 2003-09-22 #2 使用sprintf函数: char buf[10]; sprintf(buf, "%d", myCharValue); sprintf(buf, "%d", myIntValue); sprintf(buf, "%f", myFloat); 或使用CString的Format函数: CString str; str.Format("%d", myCharValue); str.Format("%d", myIntValue); str.Format("%f", myFloat);
使用sprintf函数: char buf[10]; sprintf(buf, "%d", myCharValue); sprintf(buf, "%d", myIntValue); sprintf(buf, "%f", myFloat); 或使用CString的Format函数: CString str; str.Format("%d", myCharValue); str.Format("%d", myIntValue); str.Format("%f", myFloat);