C-基础:atoi

C语言库函数名: atoi
功 能: 把字符串转换成整型数。
名字来源:ASCII to integer 的缩写。
原型: int atoi(const char *nptr);
函数说明: 参数nptr字符串,如果第一个非空格字符存在,并且,如果不是数字也不是正负号则返回零,否则开始做类型转换,之后检测到非数字(包括结束符 \0) 字符时停止转换,返回整型数。
头文件: #include <<A href="http://baike.baidu.com/view/1347718.htm" target=_blank>stdlib.h>
程序例:
1)
 1 #include
 2 #include
 3 int main(void)
 4 {
 5 int n;
 6 char *str = "12345.67";
 7 n = atoi(str);
 8 printf("string = %s integer = %d\n", str, n);
 9 return 0;
10 }

 

执行结果:
string = 12345.67 integer = 12345
2)
 1 #include
 2 #include
 3 int main()
 4 {
 5 char a[] = "-100" ;
 6 char b[] = "123" ;
 7 int c ;
 8 c = atoi( a ) + atoi( b ) ;
 9 printf("c = %d\n", c) ;
10 return 0;
11 }

 

执行结果:
c = 23
简单的实现atoi函数源代码
 1 #include
 2 int my_atoi(const char* p){
 3 assert(p != NULL);
 4 bool neg_flag = false;// 符号标记
 5 int res = 0;// 结果
 6 if(p[0] == '+' || p[0] == '-')
 7 neg_flag = (*p++ != '+');
 8 while(isdigit(*p)) res = res*10 + (*p++ - '0');
 9 return neg_flag ?0 -res : res;
10 }

 

posted @ 2013-08-15 17:35  CPYER  阅读(246)  评论(0编辑  收藏  举报