搜索结果
查询Tags标签: resourceId,共有 4条记录-
java8 lambda表达式 if else 策略模式优化
if else 策略优化 Map+函数式接口实现优化新的改变Map+函数式接口实现优化 上代码: 不同策略的service业务实现 /*** @Author: Clint* @Date: 2022/1/16 10:54* @Version: 1.0* @Description:*/ @Service public class GrantTypeSerive {public String redPaper(String r…
2022/1/16 12:04:19 人评论 次浏览 -
java8 lambda表达式 if else 策略模式优化
if else 策略优化 Map+函数式接口实现优化新的改变Map+函数式接口实现优化 上代码: 不同策略的service业务实现 /*** @Author: Clint* @Date: 2022/1/16 10:54* @Version: 1.0* @Description:*/ @Service public class GrantTypeSerive {public String redPaper(String r…
2022/1/16 12:04:19 人评论 次浏览 -
Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object refer
问题原因: 1,int和Integer判断是否相等时出错 2,用到int的地方,实际传值是Integer (int是基本类型,存数值;integer是对象,用一个引用指向这个对象) 解决方案: 对Integer参数进行null判断,如果不为null,再将Integer值转换成intpublic Integer getResource(){re…
2021/7/10 14:35:52 人评论 次浏览 -
Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object refer
问题原因: 1,int和Integer判断是否相等时出错 2,用到int的地方,实际传值是Integer (int是基本类型,存数值;integer是对象,用一个引用指向这个对象) 解决方案: 对Integer参数进行null判断,如果不为null,再将Integer值转换成intpublic Integer getResource(){re…
2021/7/10 14:35:52 人评论 次浏览