当前位置:主页 > 软件编程 > C代码 >

c++ int转string方法

时间:2020-12-24 11:58:37 | 栏目:C代码 | 点击:

复制代码 代码如下:

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

return s;
}

您可能感兴趣的文章:

相关文章