码迷,mamicode.com
首页 > 其他好文 > 详细

整数1转换成字符串"001"的简单方法

时间:2014-11-10 13:22:39      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   div   art   问题   

如何将整数1转换成字符串"001"这个问题,涉及到一个概念:字符串格式化。

常用的字符串格式化命令叫做:sprintf,下面举例说明。

int i = 8;       
char array[4];
sprintf(array,"%.3d",i);
string s = array;

另外附上一篇文章:string 与char* char[]之间的转换

                          http://blog.csdn.net/cogbee/article/details/8931838

整数1转换成字符串"001"的简单方法

标签:style   blog   http   color   ar   sp   div   art   问题   

原文地址:http://www.cnblogs.com/gattaca/p/4086800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!