atoi函数将一个字符串形式转换为一个整型形式,它位于标准库头文件中
直白点:
可以将字符串“12345”转换成数字12345,将“-86”转换成-86.
函数定义:
int atoi(const char *str);
参数:
str:指向以空字符 \0 结尾的字符串,该字符串表示要转换的数字。
返回值:
返回该字符串转换后的整数值。如果转换失败(比如传递的字符串不代表有效的整数),atoi 将返回 0。
测试代码如下:
#include <iostream>
#include <cstdlib> // 所在库
int main() {
const char *str1 = "1234";
const char *str2 = "56abc";
const char *str3 = "abc";
const char *str4 = "-86";
int num1 = atoi(str1); //
int num2 = atoi(str2); //
int num3 = atoi(str3); //
int num4 = atoi(str4);
std::cout << "num1: " << num1 << std::endl;
std::cout << "num2: " << num2 << std::endl;
std::cout << "num3: " << num3 << std::endl;
std::cout << "num4: " << num4 << std::endl;
return 0;
}
总结:
1.atoi 函数不进行错误检查,若字符串中存在非数字字符,它只会转换字符串开头的数字部分,忽略后面的非数字字符。
2.如果字符串不包含任何可转换的数字,atoi 将返回 0。