C++ 字符串与数字相互转换

数字转字符串

方法一

使用to_string()
对于浮点数会附带小数位,且小数位不足补零

int num = 123;
string s;
s = to_string(num);
cout << s << endl;

方法二

使用stringstream,记得添加相应的头
可以是浮点数

#include<sstream>
int num = 123;
stringstream stream;
stream << num;
cout << stream.str() << endl;

字符串转数字

方法一

使用stringstream

#include<sstream>
int num;
string s = "123";
stringstream stream;
stream >> s;
stream << num;
cout << num << endl;

方法二

使用stoi、stol、stof、stod

string s;
int a = stoi(s);
long b = stoi(s);
float c = stoi(s);
double d = stoi(s);

int stoi(const string str, size_t pos = 0, int base = 10)*
pos 指向无法被转换成数字的一个位置
base 用于进制转换

相关阅读

C++ 字符(char)转字符串(string)

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值