函数初窥Linux atoi 函数的功能(linuxatoi)
Linux atoi 函数又称 ascii to integer,是常见库函数之一。它可以将一个字符串转换成 int 类型的值,它会忽略字符串前面的空格符,例如” 12345″、”0000096521″等字符串都将被转换成非负的 int 整数。
Linux atoi 函数的用法为:
int atoi(const char* str)
函数参数 str 是待转换的字符串,返回值是:若 str 是空字符串,则返回 0;若 str 的值表示一个可以被表示为一个可以用int表示的值,则返回该值;若遇到字符串str中的非数值字符,则返回直到那个字符为止的转换值。
Linux atoi 函数示例代码如下:
#include
#include
int main (int argc, char *argv[])
{
int result;
char str1[]=”12345″;
char str2[]=”-8349″;
printf(“str1 = %s \nstr2 = %s \n”,str1,str2);
// Convert the first string to integer
result = atoi(str1);
printf(“atoi(str1):%d \n”,result);
// Convert the second string to integer
result = atoi(str2);
printf(“atoi(str2):%d \n”,result);
return 0;
}
上面代码的运行结果为:
str1 = 12345
str2 = -8349
atoi(str1):12345
atoi(str2):-8349
从上面的代码可以看出,linux atoi 函数可以有效将字符串转换成 int 类型的值,常用于图形化界面交互输入处理,例如输入转换为int类型存储到数据库等。
总之,Linux atoi 函数功能就是将字符串中的字符转换为整数,且具有忽略字符串前面无效字符的功能,能够很好地满足图形化界面与数据处理的交互用户输入转换需求。