字符,字符串及数字之间的相互转换

字符,字符串及数字之间的相互转换

一.将字符串转化为数字
平常我们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;
}
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值