gpt4 book ai didi

java - 验证金额应为整数类型的方法返回类型

转载 作者:行者123 更新时间:2023-12-01 23:50:17 24 4
gpt4 key购买 nike

我通过pojo的getter方法获取对象中的金额但该 amount getter 方法返回类型在 pojo 中设置为字符串如下图

//setting need to be done in pojo
private String amount;

public String getAmount() {
return amount;
}

假设下面有一个对象 h 并且我正在检索它,就像

h.getAmount()

现在我需要开发一个 validator 来验证该金额应该是整数类型,如果不是则抛出异常请告知我如何开发一种单独的方法来检查是否金额是否为整数并以此为基础将返回 true 或 false ,如下所示

// Validate the amount is in integer
private boolean isValidAmount (String Amount) {
boolean valid = false;
//code to check whether the Amount is integer or not, if integer then
//return true else return false
}

我已经更新了该帖子,因为它引发了数字格式异常,请告知

最佳答案

您可以尝试解析它,并在解析成功时返回 true。

try {
Integer.parseInt(amount);
return true;
} catch (NumberFormatException e) {
return false;
}

编辑

我刚刚重新阅读了这个问题,并注意到您想要对这个真/假值做的唯一一件事就是如果无法解析字符串,可能会引发异常。在这种情况下,您可以摆脱那个 boolean 中间人:

try {
Integer.parseInt(amount);
} catch (NumberFormatException e) {
throw new MyWhateverException(amount);
}

关于java - 验证金额应为整数类型的方法返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16392870/

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