atoi、stoi和strtol的使用

1、atoi

    将string字符串转换为int类型,只能转换为十进制;atoi函数不会对string字符串进行范围检查[-2147483648,2147483647],超过这个界限,不会报错,只会进行相应的转换,遇到非法字符会停止,不会报错;头文件为cstdlib

#include
#include
#include
using namespace std;
void atoiInt1(){
	string s="111111";
	cout<

输出:

111111
111
-2147483648

2、stoi

        将string字符串转换为int类型,只能转换为十进制;atoi函数会对字符串进行检查,如果超过范围,会报错,遇到非法字符同样会停下来,不会报错;头文件为string

#include
#include
#include
using namespace std;
int stoiInt1(){
	string s="111111";
	cout<

输出:

111111
111
terminate called after throwing an instance of 'std::out_of_range'

3、strtol

        同样是将string字符串转换为int类型,但这个函数可以自定义转换的string字符串的类型(第三个参数可定义string字符串的类型),strtol超过int范围,不会报错,只会输出最大或者最小值[-2147483648,2147483647],遇到非法字符,则同样停止,不会报错;

#include
#include
#include
using namespace std;
int strtolInt1(){
	string s="111111";
	cout<

输出:

63
111
2147483647
-2147483648

你可能感兴趣的:(c++)