(1)使用ostringstream;
ostringstram oss;
oss << a;
string s = oss.str();
(2)使用sprintf
char buf[20] = {0};
sprintf(buf, "%d", a);
string s = buf;
(3)使用itoa
char buf[20] = {0};
string s = itoa(a, buf, 10);
(4)使用MFC的CString::Format:
CString s0;
s0.Format("%d", a);
(5)使用boost的lexical_cast:
string s = boost::lexical_cast<string>(a);
int 转换成string 类型的方法
最新推荐文章于 2024-03-21 13:25:24 发布
本文介绍了五种将整型变量转换为字符串的方法,包括使用ostringstream、sprintf、itoa、MFC的CString::Format以及boost的lexical_cast。每种方法都有其适用场景和特点。
摘要由CSDN通过智能技术生成