C++ 字符串如何转数字
Posted 软件工程小施同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 字符串如何转数字相关的知识,希望对你有一定的参考价值。
1. int atoi(const char * str)
参数:该函数接受一个强制性参数str,它表示整数。
返回值:该函数将转换后的整数返回为 int。如果无法执行有效的转换,则返回零。
2. long int atol(const char * str)
参数:该函数接受一个强制性参数str,它表示整数。
返回值:该函数将转换后的整数返回为long int。如果无法执行有效的转换,则返回零。
3. long long int atoll(const char * str)
参数:该函数接受强制性参数str,它是整数的表示形式。
返回值:该函数将转换后的整数返回为long long int。如果无法执行有效的转换,则返回零。
4. double atof(const char * str)
参数:该函数接受一个强制性参数str,它是浮点数的表示形式。
返回值:该函数将转换后的浮点数作为双精度值返回。如果无法执行有效的转换,则该函数将返回零(0.0)。
#include <iostream>
using namespace std;
int main()
string s = "1671890582460";
printf("%s\\n", s.c_str());
cout << atoi(s.c_str()) << endl;
cout << atol(s.c_str()) << endl;
cout << atoll(s.c_str()) << endl;
s = "3 4";
cout << atof(s.c_str()) << endl;
s = "a4";
cout << atof(s.c_str()) << endl;
s = "3.14";
cout << atof(s.c_str()) << endl;
return 0;
以上是关于C++ 字符串如何转数字的主要内容,如果未能解决你的问题,请参考以下文章