C++各种字符串转换函数

atof, atoi, _atoi64, atol
Convert strings to double (atof), integer (atoi, _atoi64), or long (atol).


double atof( const char *string );


int atoi( const char *string );


__int64 _atoi64( const char *string );


long atol( const char *string );


Routine Required Header Compatibility 
atof <math.h> and <stdlib.h> ANSI, Win 95, Win NT 
atoi <stdlib.h> ANSI, Win 95, Win NT 
_atoi64 <stdlib.h> Win 95, Win NT 
atol <stdlib.h> ANSI, Win 95, Win NT




For additional compatibility information, see Compatibility in the Introduction.




#include <stdlib.h>
#include <stdio.h>


void main( void )
{
char *s; double x; int i; long l;


s = " -2309.12E-15"; /* Test of atof */
x = atof( s );
printf( "atof test: ASCII string: %s\tfloat: %e\n", s, x );


s = "7.8912654773d210"; /* Test of atof */
x = atof( s );
printf( "atof test: ASCII string: %s\tfloat: %e\n", s, x );


s = " -9885 pigs"; /* Test of atoi */
i = atoi( s );
printf( "atoi test: ASCII string: %s\t\tinteger: %d\n", s, i );


s = "98854 dollars"; /* Test of atol */
l = atol( s );
printf( "atol test: ASCII string: %s\t\tlong: %ld\n", s, l );
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值