Linux 下 C++如何将string 转为 int

Linux 下 C++如何将string 转为 int,第1张

用atoi函数,例如:

string str = "asdfasdgsg"

int i = atoi(str.c_str())

转换后,i结果为0

可以用man atoi查看相关库函数,如:

标准C库函数

#include <stdlib.h>

原型 : int atoi( const char *str )

功能:将字符串str转换成一个整数并返回结果。参数str 以数字开头,当函数从str

中读到非数字字符则结束转换并将结果返回。

例如:int num = atoi("1314.012")

int值为1314

1、atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数,应用在计算机程序和办公软件中。

2、头文件: #include <stdlib.h>

3、它在Linux下的Vi编辑器能用

int atoi(const char *nptr) 函数会扫描参数 nptr字符串,会跳过前面的空白字符(例如空格,tab缩进)等。如果 nptr不能转换成 int 或者 nptr为空字符串,那么将返回 0  。特别注意,该函数要求被转换的字符串是按十进制数理解的。

扩展资料

范例:

1>

#include <stdlib.h>

#include <stdio.h>

int main(void)

{

int n

char *str = "12345.67"

n = atoi(str)

printf("string = %s integer =%d\n", str, n)

return 0

}

执行结果

string = 12345.67 integer = 12345.000000

2>

#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()


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/7163888.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存