java 将字符串的数字转为整型
时间: 2024-03-20 20:42:27 浏览: 82
可以使用 Integer 类的 parseInt() 方法将字符串的数字转为整型,例如:
```
String str = "123";
int num = Integer.parseInt(str);
```
注意,如果字符串中包含非数字字符,会抛出 NumberFormatException 异常。可以使用 try-catch 语句来处理这种情况,例如:
```
String str = "123a";
try {
int num = Integer.parseInt(str);
} catch (NumberFormatException e) {
System.out.println("字符串不是数字");
}
```
相关问题
字符串数字转整形 c语言
可以使用 atoi 函数将字符串数字转为整型。
示例代码:
#include <stdlib.h>
#include <stdio.h>
int main() {
char str_num[10] = "12345";
int num = atoi(str_num);
printf("字符串数字 %s 转为整型后为 %d\n", str_num, num);
return 0;
}
输出结果:
字符串数字 12345 转为整型后为 12345
阅读全文