做题目时经常遇到输入字符串,我们需要将其变换为对应整数。如将“20”变为int类型的20。
其实并不需要for循环来做,只需要调用一个函数。
atoi()
1 功能
atoi()函数将数字格式的字符串转换为整数类型。例如,将字符串“12345”转换成数字12345。
2 格式
该函数的格式为
int atoi(const char* str)
其中,参数str是要转换的字符串,返回值是转换后的整数。
3 注意事项
1、
在“2 格式”中提到,atoi()函数的参数是要转换的字符串。该字符串的格式为
[空格][符号][数字]
其中,空格可以是键盘中的空格字符或者是Tab字符;符号可以是表示正数的“+”,也可以是表示负数的“-”;数字即为数字字符串。所以,atoi()函数参数可以是
“ +123”
“ -456”
需要注意的是,空格和“+”可以省略。所以,atoi()函数参数还可以是
“123”
“-456”
2、
当字符串为char[]数组时直接调用即可,当字符串为string类型是,使用atoi时要用以下格式
string a;
atoi(a.c_str());// 将string类型转换为char[]类型
3、
该函数在stdlib.h与cstring中,使用时要调用其中一个头文件。
#include <cstring>
或
#include<stdlib.h>
4、
当输入的字符串对应数值超过int类型表示范围时,输出边界值。超过上界输出上界值,超过下界输出下界值。
4、例子
string a “123”;
char b[3] = “456”;
int b = atoi(a.c_str());
int d = atoi(b);
原文链接:https://blog.csdn.net/hou09tian/article/details/85230898