BigDecimal中max比较空指针异常
时间: 2023-10-15 22:02:26 浏览: 99
空指针异常
在BigDecimal中,使用max方法比较两个值时,如果其中一个值为null,会抛出空指针异常。这是因为max方法不接受null值作为参数。如果需要比较两个BigDecimal对象,可以先进行null值的判断,然后再调用max方法。例如:
```java
BigDecimal b1 = new BigDecimal("1.0");
BigDecimal b2 = null;
if (b1 == null || b2 == null) {
// 进行null值的处理
} else {
BigDecimal max = b1.max(b2);
System.out.println(max);
}
```
在上述代码中,我们先判断b1和b2是否为null,如果其中一个为null,则进行相应的处理。如果都不为null,则调用max方法比较两个值,并输出结果。这样可以避免空指针异常的发生。
#### 引用[.reference_title]
- *1* *2* *3* [java中BigDecimal的介绍及使用,BigDecimal格式化,BigDecimal常见问题](https://blog.csdn.net/weixin_49114503/article/details/129056256)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文