查看原文
其他

JDK8新特性之Optional

2017-10-06 javastack Java技术栈



Optional是什么

java.util.Optional

Jdk8提供 Optional,一个可以包含null值的容器对象,可以用来代替xx != null的判断。

Optional常用方法

of

  1. public static <T> Optional<T> of(T value) {

  2.    return new Optional<>(value);

  3. }

为value创建一个Optional对象,如果value为空则 会报出NullPointerException异常。

ofNullable

  1. public static <T> Optional<T> ofNullable(T value) {

  2.    return value == null ? empty() : of(value);

  3. }

为value创建一个Optional对象,但可以允许value为null值。

isPresent

  1. public boolean isPresent() {

  2.    return value != null;

  3. }

判断当前value是否为null,如果不为null则返回true,否则false。

ifPresent

如果不为null值就执行函数式接口的内容。

  1. public void ifPresent(Consumer<? super T> consumer) {

  2.    if (value != null)

  3.        consumer.accept(value);

  4. }

get

  1. public T get() {

  2.    if (value == null) {

  3.        throw new NoSuchElementException("No value present");

  4.    }

  5.    return value;

  6. }

返回当前的值,如果为空则报异常。

orElse

返回当前值,如果为null则返回other。

  1. public T orElse(T other) {

  2.    return value != null ? value : other;

  3. }

orElseGet

orElseGet和orElse类似,只是orElseGet支持函数式接口来生成other值。

  1. public T orElseGet(Supplier<? extends T> other) {

  2.    return value != null ? value : other.get();

  3. }

orElseThrow

如果有值则返回,没有则用函数式接口抛出生成的异常。

  1. public <X extends Throwable> T orElseThrow(Supplier<? extends X> exceptionSupplier) throws X {

  2.    if (value != null) {

  3.        return value;

  4.    } else {

  5.        throw exceptionSupplier.get();

  6.    }

  7. }

示例

  1. public static void main(String[] args) {

  2.    testOf();

  3.    testNullable();

  4. }

  5. private static void testNullable() {

  6.    User user = null;

  7.    User john = new User("john", 18);

  8.    User dick = new User("dick", 12);

  9.    System.out.println(Optional.ofNullable(user).orElse(john));

  10.    System.out.println(Optional.ofNullable(john).get());

  11.    System.out.println(Optional.ofNullable(dick).orElse(john));

  12.    System.out.println(Optional.ofNullable(user).orElseGet(() -> john));

  13.    System.out.println();

  14. }

  15. private static void testOf() {

  16.    try {

  17.        User user1 = new User();

  18.        Optional<User> userOptional1 = Optional.of(user1);

  19.        if (userOptional1.isPresent()) {

  20.            System.out.println("user is not null");

  21.        }

  22.        User user2 = null;

  23.        Optional<User> userOptional2 = Optional.of(user2);//NullPointerException

  24.        if (userOptional2.isPresent()) {

  25.            System.out.println("user is not null");

  26.        }

  27.    } catch (Exception e) {

  28.        e.printStackTrace();

  29.    }

  30.    System.out.println();

  31. }

Optional在jdk8中有大量使用,比如像Stream流中,但 Optional用在null判断感觉也没什么鸟用。。

在Spring4中也可以用Optional来代替autowired(require=false)的情况,参考历史Spring系列文章。

推荐阅读



什么是Spring Boot?

Spring Boot开启的2种方式

Spring Boot Starters启动器

Spring Boot定制启动图案

Spring Boot核心配置

Spring Boot功能实战

Spring Boot自动配置原理、实战

Spring Boot Runner启动器

Spring Boot - Profile不同环境配置


看完有没有收获?

分享到朋友圈给更多的人吧。




  Java技术栈  
微信公众号:「Javastack

分享Java干货,高并发编程,热门技术教程,微服务及分布式技术,架构设计,区块链技术,人工智能,大数据,Java面试题,以及前沿热门资讯等。


 ▼长按二维码关注我们↓↓↓




您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存