gpt4 book ai didi

java - 将空字符串转换为整数

转载 作者:太空狗 更新时间:2023-10-29 22:59:38 24 4
gpt4 key购买 nike

有什么方法可以将 null 转换为 Integer。 null 实际上是一个字符串,我将其传递到接受它作为整数的服务层。因此,每当我尝试将 null String 转换为 Integer 时,它都会抛出异常。但我必须将 null 转换为 Integer。

最佳答案

不能从字符串转换为整数。但是,如果您尝试将字符串转换为整数,并且必须提供处理 null 字符串的实现,请查看以下代码片段:

String str = "...";
// suppose str becomes null after some operation(s).
int number = 0;
try
{
if(str != null)
number = Integer.parseInt(str);
}
catch (NumberFormatException e)
{
number = 0;
}

关于java - 将空字符串转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9595968/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com