public class TestBooleanNull { public static void main(String[] args) {
if (test()) {
System.out.println("1232");
}
} /**
* java.lang.Boolean是对象,可以为null。但null作为if的条件会报npe
* @return
*/
private static Boolean test() {
return null;
} }
相关文章
- 02-14SpringCloud使用Feign调用其他客户端带参数的接口,传入参数为null或报错status 405 reading IndexService#del(Integer);
- 02-14not in 前面/后面存在null值时的处理
- 02-14判断返回数据是否为 null
- 02-14我将符号设置为实数时,Sympy diff()给出错误的结果
- 02-14设置为Android 4.0时,Eclipse无法识别numberPassword吗?
- 02-14Mybatis——字段为null的解决方法
- 02-14Springboot 配置类( @Configuration) 不能使用@Value注解从application.propertyes中加载值以及Environment为null解决方案
- 02-14jmeter压测dubbo接口,参数为dto时如何写传参及有错误时的分析思路
- 02-14编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数1/1+1/3+...+1/n(利用指针函数)
- 02-14Documents.Open返回值为null