标签: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
标签:style blog http color ar sp div art 问题
原文地址:http://www.cnblogs.com/gattaca/p/4086800.html