首页 > 编程 > C++ > 正文

c++ int转string方法

2020-01-26 16:22:39
字体:
来源:转载
供稿:网友
复制代码 代码如下:

/************************************************************************/
/* int to string */
/************************************************************************/
std::string CCardDispatcher::ItoA(int n){
char ss[16]; //这个长度根据需要吧
sprintf(ss, "%d", n);
std::string s(ss);

return s;
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表