字符,字符串及数字之间的相互转换
一.将字符串转化为数字
平常我们c++头文件为#include,要将字符串转化为数字需要再加入头文件# include 来进行数据的转换。
先用string来创建字符对象,然后用stringstream进行数据的转换。
代码如下:
#include
#include
#include
using namespace std;
int main()
{
string s =“9”;
stringstream a (s);
int x=0;
a>>x;
cout<<x;
return 0;
}
如图,引入一个函数,用string来创建字符串 s ,再用stringstream将字符串s转化为数字,再将x引流到a中,输出x得到结果。
二.将数字转化为字符串
用stingstream进行数据的转换,将数字9转化为字符’9’;
代码如下:
#include
#include
#include
using namespace std;
int main()
{
int a=9;
string b;
stringstream c;
c<<a;
c>>b;
cout<<b<<endl;
return 0;
}
三.将字符数组转化为字符串
先用string来创建字符对象,使用string头文件必须加上#include ,将字符数组{‘x’,‘u’,‘f’,‘e’}转化为字符串xufe,
代码如下:
#include
#include
using namespace std;
int main()
{
char a[5]={‘x’,‘u’,‘f’,‘e’};
string s;
s=a;
cout<<s<<endl;
return 0;
}