c++ int转string的示例代码

代码如此所示:

/************************************************************************/
/* int to string */
/************************************************************************/
std::string CCardDispatcher::ItoA(int n){
char ss[16]; //这个长度根据需要吧
sprintf(ss, "%d", n);
std::string s(ss);
return s;
}
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论