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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VC++6.0环境中int型怎么转换成string型相关的知识,希望对你有一定的参考价值。

总结了一下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
参考技术A char *itoa(int value,char *string,int radix)   将整数value转换成字符串存入string, 参考技术B 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);
参考技术C sprintf,
itoa都可本回答被提问者采纳

以上是关于VC++6.0环境中int型怎么转换成string型的主要内容,如果未能解决你的问题,请参考以下文章

请教在C++里如何把string类型转换成long型?

C#中怎么将string转换成int型

C#中怎么将string转换成int型

c#中怎么将string转换成int型

C#中怎么将string转换成int型

VC中char*与cstring型的转换