前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Java8之后的业务取值避免空指针的一种解法

Java8之后的业务取值避免空指针的一种解法

作者头像
干货满满张哈希
发布2021-04-12 14:16:15
3490
发布2021-04-12 14:16:15
举报
文章被收录于专栏:干货满满张哈希

写业务代码的时候,通常会遇到数据库POJO对象转换为前端需要的VO对象,这时经常会遇到烦人的空指针问题,Java 8之前,我们可能这么写:

  1. 对于对象field复制风格:
代码语言:javascript
复制
a.setCreateTime(b.getCreateTime().getTime());
a.setAmount(b.getPayed()+b.getVoucher());
  1. 对于装饰器风格:
代码语言:javascript
复制
public Long getCreateTime() {
    return b.getCreateTime().getTime();
}
public Long getAmount() {
    return b.getPayed()+b.getVoucher()
}

很明显,这些代码会有空指针异常的风险.一般我们会这么修改:

  1. 对于对象field复制风格:
代码语言:javascript
复制
if (b.getCreateTime()!= null) {
    a.setCreateTime(b.getCreateTime().getTime());
}
if (b.getPayed() != null) {
    a.setAmount(b.getPayed();     
} else {
    a.setAmount(0L);
}
if (b.getVoucher() != null) {
a.setAmount(a.getAmount()+b.getVoucher());
}
  1. 对于装饰器风格:
代码语言:javascript
复制
public Long getCreateTime() {
    if (b.getCreateTime()!= null) {
        return b.getCreateTime().getTime();
    } else {
        return null;
    }
}
public Long getAmount() {
    Long result = 0L;
    if (b.getPayed() != null) {
        result += b.getPayed();
    }
    if (b.getVoucher() != null) {
        result += b.getVoucher();
    }
    return result;
}

Java8引入的Optional写法:

  1. 对于对象field复制风格:
代码语言:javascript
复制
Optional.ofNullable(b.getCreateTime()).ifPresent(timestamp -> a.setCreateTime(timestamp.getTime()));
a.setAmount(Optional.ofNullable(b.getPayed()).orElse(0L) + Optional.ofNullable(b.getVoucher()).orElse(0L));
  1. 对于装饰器风格:
代码语言:javascript
复制
public Long getCreateTime() {
    Optional createTime = Optional.ofNullable(b.getCreateTime());
    if (createTime.isPresent()) {
        return createTime.get();
    } else {
        return null;
    }
}
public Long getAmount() {
    return Optional.ofNullable(b.getPayed()).orElse(0L) + Optional.ofNullable(b.getVoucher()).orElse(0L)
}

这样依然很复杂,尤其是嵌套多层之后。 更进一步,有没有通用简便的方法呢?联想到Java8的Functional Interface以及我们需要处理的异常只有空指针异常,可以写工具类:

代码语言:javascript
复制
import java.util.function.Supplier;

public class OptionalUtil {
    /**
     * 忽略NullPointerException的获取
     * @param supplier
     * @param 
     * @return 如果有空指针,返回null
     */
    public static  T orNull(Supplier supplier) {
        try {
            return supplier.get();
        } catch (NullPointerException e) {
            return null;
        }
    }

   /**
     * 忽略NullPointerException的获取
     *
     * @param supplier
     * @param or
     * @param 
     * @return 如果有空指针,返回or
     */
    public static  T or(Supplier supplier, T or) {
        try {
            T t = supplier.get();
            if (t != null) {
                return t;
            }
            return or;
        } catch (NullPointerException e) {
            return or;
        }
    }
}

这样,我们的代码就变得简洁多了:

  1. 对于对象field复制风格:
代码语言:javascript
复制
a.setCreateTime(OptionalUtil.orNull(() -> b.getCreateTime().getTime()));
a.setAmount(OptionalUtil.or(() -> b.getPayed(), 0L) + OptionalUtil.or(() -> b.getAmount(), 0L));
  1. 对于装饰器风格:
代码语言:javascript
复制
public Long getCreateTime() {
    return OptionalUtil.orNull(() -> b.getCreateTime().getTime());
}
public Long getAmount() {
    return OptionalUtil.or(() -> b.getPayed(), 0L) + OptionalUtil.or(() -> b.getAmount(), 0L);
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/09/03 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档