- 原型:int atoi (const char *nptr)
- 用法:#include <stdlib.h>
- 功能:将字符串转换成整型数;atoi()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负号才开始做转换,而再遇到非数字或字符串时('\0')才结束转化,并将结果返回。
- 说明:atoi()函数返回转换后的整型数。
- 举例:
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- char a[] = "-100";
- char b[] = "456";
- int c = 0;
- c = atoi(a) + atoi(b);
- printf("c = %d\n",c);
- }
结果:

- 举例2:
|
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdlib.h>#include <stdio.h>int main(void){ float n; char const *str = "12345.67"; n = atoi(str); printf("string=%sint=%dfloat=%f\n",str,n,n); return0;} |
输出:
string = 12345.67 int=12345float = 12345.000000
2)
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdlib.h>#include <stdio.h>int main(){ char a[] = "-100"; char b[] = "123"; int c; c = atoi(a) + atoi(b); printf("c=%d\n", c); return 0;} |
执行结果:
c = 23
- 函数实现:
atoi()函数实现的代码:
- /*
- * name:xif
- * coder:xifan@2010@yahoo.cn
- * time:08.20.2012
- * file_name:my_atoi.c
- * function:int my_atoi(char* pstr)
- */
- int my_atoi(char* pstr)
- {
- int Ret_Integer = 0;
- int Integer_sign = 1;
- /*
- * 判断指针是否为空
- */
- if(pstr == NULL)
- {
- printf("Pointer is NULL\n");
- return 0;
- }
- /*
- * 跳过前面的空格字符
- */
- while(isspace(*pstr) == 0)
- {
- pstr++;
- }
- /*
- * 判断正负号
- * 如果是正号,指针指向下一个字符
- * 如果是符号,把符号标记为Integer_sign置-1,然后再把指针指向下一个字符
- */
- if(*pstr == '-')
- {
- Integer_sign = -1;
- }
- if(*pstr == '-' || *pstr == '+')
- {
- pstr++;
- }
- /*
- * 把数字字符串逐个转换成整数,并把最后转换好的整数赋给Ret_Integer
- */
- while(*pstr >= '0' && *pstr <= '9')
- {
- Ret_Integer = Ret_Integer * 10 + *pstr - '0';
- pstr++;
- }
- Ret_Integer = Integer_sign * Ret_Integer;
- return Ret_Integer;
- }
现在贴出运行my_atoi()的结果,定义的主函数为:int main ()
- int main()
- {
- char a[] = "-100";
- char b[] = "456";
- int c = 0;
- int my_atoi(char*);
- c = atoi(a) + atoi(b);
- printf("atoi(a)=%d\n",atoi(a));
- printf("atoi(b)=%d\n",atoi(b));
- printf("c = %d\n",c);
- return 0;
- }
本文详细介绍了atoi函数的功能与使用方法,包括其如何将字符串转换为整数的过程,通过多个实例展示了atoi函数的应用场景,并提供了atoi函数的实现代码。

1万+

被折叠的 条评论
为什么被折叠?



