VC++6.0环境中int型怎么转换成string型

 我来答
luotang123000
2015-10-04 · TA获得超过763个赞
知道小有建树答主
回答量:247
采纳率:0%
帮助的人:140万
展开全部
总结了一下5 种方法:

1.种

#include <iostream>
#include <string>
using namespace std;

int main()
{
int n = 65535;
char t[256];
string s;

sprintf(t, "%d", n);
s = t;
cout << s << endl;

return 0;
}
2.种

//第二种方法
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

int main()
{
int n = 65535;
stringstream ss;
string s;
//利用C++流的性质
ss << n;
ss >> s;
cout << s << endl;

return 0;
}
可以这样理解,stringstream可以吞下不同的类型,根据ss的类型,吐出不同的类型。

3.自定义吧int的每位数字分离变成字符串

#include <iostream>
#include <string>
using namespace std;

string int2str(int n) {

char t[24];
int i = 0;

while (n) {
t[i++] = (n % 10) + '0';
n /= 10;
}
t[i] = 0;

return string(strrev(t));
}

int main() {

int n = 1312355;
string str = int2str(n);
cout<<str<<endl;

return 0;
}
4.种
使用itoa(int to string) 最新安全函数可能是使用 _itoa()
//char *itoa( int value, char *string,int radix);
// 原型说明:
// value:欲转换的数据。
// string:目标字符串的地址。
// radix:转换后的进制数,可以是10进制、16进制等。
// 返回指向string这个字符串的指针

int aa = 30;
char c[8];
itoa(aa,c,16);
cout<<c<<endl; // 1e
注意:itoa并不是一个标准的C函数,它是Windows特有的,如果要写跨平台的程序,请用sprintf

5、使用boost库中的lexical_cast
1 int aa = 30;
2 string s = boost::lexical_cast<string>(aa);
3 cout<<s<<endl; // 30
多情无情而已
2011-12-19 · 知道合伙人互联网行家
多情无情而已
知道合伙人互联网行家
采纳数:4 获赞数:47
发表多篇文章,主持参与多项课题研究

向TA提问 私信TA
展开全部
char *itoa(int value,char *string,int radix)   将整数value转换成字符串存入string,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
沧海雄风2009
2011-12-19 · TA获得超过1.1万个赞
知道大有可为答主
回答量:8525
采纳率:79%
帮助的人:2850万
展开全部
itoa()
sprintf

123
123
Press any key to continue
#include<stdio.h>
#include "stdlib.h"
main()
{
char a[30],b[30];
int num=123;
itoa(num,a,10);
printf("%s\n",a);
sprintf(b,"%d",num);
printf("%s\n",b);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
何处淬吴钩
2011-12-30 · TA获得超过5045个赞
知道大有可为答主
回答量:2947
采纳率:50%
帮助的人:2412万
展开全部
sprintf,
itoa都可
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式