c++ 字符串与数字相互转换
Posted bitcarmanlee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ 字符串与数字相互转换相关的知识,希望对你有一定的参考价值。
日常编码过程中,字符串与数字进行相互转换是常见的需求,下面我们总结一下在c++中,字符串与数字的转换都是如何来进行操作的。
1.字符串转数字c语言风格
首先看看,在c语言的风格中,我们怎么做到把字符串转为数字。
void func1()
string s1 = "123";
string s2 = "123.1";
int i = atoi(s1.c_str());
double d = atof(s2.c_str());
cout<<i<<endl;
cout<<d<<endl;
注意上述代码是在namespace为std的环境中运行。
atoi, atof函数,均在stdlib.h中进行了声明,在头文件中,其声明的函数原型为
double atof(const char *);
int atoi(const char *);
long atol(const char *);
不难看出,上面这些方法的输入均为const char *,即字符串,得到的输出为转化以后的各种数值类型。
123
123.1
2.字符串转数字c++风格
void func2()
string s1 = "456";
string s2 = "456.2";
int i = stoi(s1);
long l = stol(s1);
float f = stof(s2);
double d = stod(s2);
cout<<i<<endl;
cout<<l<<endl;
cout<<f<<endl;
cout<<d<<endl;
上面代码也是在namespace为std的环境下运行
这些函数均位于string类中,函数签名原型为
_LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
_LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
_LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
_LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
_LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
_LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = 0);
_LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = 0);
_LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = 0);
最后代码运行结果为
456
456
456.2
456.2
3.数字转字符串
上面是字符串转数字,接下来再看看数字如何转字符串。
void func3()
int i = 123;
float f = 1.234;
double d = 2.012;
cout<<to_string(i)<<endl;
cout<<to_string(f)<<endl;
cout<<to_string(d)<<endl;
c++11以后,string类中提供了to_string方法,可以将各种类型数字转成字符串。
上面的代码输出结果为:
123
1.234000
2.012000
输出的结果貌似与我们预期有差异,很明显是与浮点数精度相关。
为了控制浮点数的精度,可以使用ostringstream来控制精度。
#include<sstream>
#include <iomanip>
using namespace std;
void func4()
double d = 3.14159265358979;
cout << d << endl;
stringstream ss;
ss.precision(10);
ss << d;
cout << ss.str() << endl;
上面的代码运行,结果为
3.14159
3.141592654
主要是通过precison控制浮点数精度
开发者涨薪指南 48位大咖的思考法则、工作方式、逻辑体系以上是关于c++ 字符串与数字相互转换的主要内容,如果未能解决你的问题,请参考以下文章