c/c++:字符串和数字间的转换总结

本文介绍了C++中几种常见的数据类型转换方法,包括单个字符与整型间的直接转换,使用atoi()函数将字符串转为整型,atof()函数将字符串转为浮点数,以及to_string()函数将整型和浮点数转为字符串。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、单个字符直接使用强制转换(例如a,b,c)

    char c = 'a';
    int i = 97;
    cout << (int)c << endl;
    cout << (char)i << endl;

 

2、字符串转整型函数atoi()(strng-int):

//string 类型不能直接转为int类型
//需要先将string类型转化为const char*类型,如下:

string s="123";
const char* c=s.c_str();

//const char*类型可利用atoi函数转化为int类型:

int i=atoi(c);

3、字符串转浮点数函数atof():

//同样,string类型需要先转化为const char*类型
string s1="3.1415";
float f=atof(s1.c_str());
cout<<"f:"<<f<<endl;

 4、整型转字符串函数to_string():

    int a = 123;
    string s2 = to_string(a);
    cout << "s2:" << s2 << endl;

 浮点数转字符串

    double a = 123.123;
    string s2 = to_string(a);
    cout << "s2:" << s2 << endl;

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值