Optional

简介: Optional

 概述

我们在编写代码的时候出现最多的就是空指针异常。所以在很多情况下我们需要做各种非空判断。

例如:

Author author = getAuthor();
if(author != null){
  System.out.println(author.getName());
}

image.gif

创建对象

ofNullable() 无论是否为空

无论传入的参数是否为null都不会出现问题

Author author = new Author(1L, "哆啦", 33, "奥里给", null);
Optional<Author> authorOptional = Optional.ofNullable(author);

image.gif

of() 确认对象不是空

如果确认对象不是空,则可以使用optional的静态方法of来把数据封装成Optional对象

Author author = new Author(1L, "哆啦", 33, "奥里给", null);
Optional<Author> authorOptional = Optional.of(author);

image.gif

empty

如果一个方法的返回值是Optional类型,且经过判断发现某次计算的得到返回值为null,这个时候需要把null封装合成Optional对象返回。这时候可以使用Optional静态方法empty来封装

Author author = new Author(1L, "哆啦", 33, "奥里给", null);
return author == null ? Optional : Optional.of(author);

image.gif

安全消费值

获取到一个Optional对象后,如果需要使用对象数据。这时候可以使用ifPresent方法对消费其中的值

这个方法会判断封装内的数据是否为空,不为空时才会执行具体消费代码,这样就更安全。

Optional<Author> authorOptional = Optional.ofNullable(getAuthor());
authoOptional.ifPresent(author -> System.outprintln(author.getName()));

image.gif

使用

get() 获取Optional中的值

如果我们想获取值自己进行处理,可以使用get方法获取,但是不推荐。因为Optional内部的数据为空时候会出现异常

public static void test01(){
    Author author = new Author(1L, "小吸几", 33, "奥里给", null);
    Optional<Author> authorOptional = Optional.ofNullable(author);
    Author author1 = authorOptional.get();
    System.out.println(author1);
}

image.gif

orElseGet() 安全的获取值

需要设置一个默认值,如果Optional的值为null,就拿默认值补上去

private static void test02() {
    Author author = new Author(1L, "小吸几", 33, "奥里给", null);
    Optional<Author> authorOptional = Optional.ofNullable(author);
    Author author1 = authorOptional.orElseGet(() -> new Author(2L, "大脑斧", 22, "奥里给", null));
    System.out.println(author1.getName());
}

image.gif

orElseThrow() 获取值如果为空抛异常

如过Optional的值为null,则抛出异常

private static void test03() {
  Author author = new Author(1L, "小吸几", 33, "奥里给", null);
  Optional<Author> authorOptional = Optional.ofNullable(author);
  try {
    Author author1 = authorOptional.orElseThrow((Supplier<Throwable>) () -> new RuntimeException("Optional值为null"));
  System.out.println(author1.getName());
  } catch (Throwable e) {
    throw new RuntimeException(e);
  }
}

image.gif

filter() 过滤

对数据进行过滤,如果原本有数据,但是都不符合条件,就会变成一个无数据的Optional对象

private static void test04() {
    Author authors = new Author(1L, "大脑斧", 33, "奥里给", null);
    Optional<Author> authorOptional = Optional.ofNullable(authors);
    Optional<Author> author1 = authorOptional.filter(author -> author.getAge() > 18);
    System.out.println(author1);
}

image.gif

isPresent() 判断数据是否存在

isPresent()判断是否存在数据。如果为空返回值为false,如果不为空true。(这种方式不能体现Optional的好处,推荐使用ifPresent方法

private static void test05() {
    Author authors = new Author(1L, "大脑斧", 33, "奥里给", null);
    Optional<Author> authorOptional = Optional.ofNullable(authors);
    if (authorOptional.isPresent()) {
        System.out.println(authorOptional.get().getName());
        System.out.println(authorOptional.get().getAge());
    }
}

image.gif

map() 数据转换

和stream的map差不多,详情参照stream的map

private static void test06() {
    // 获取数据
    Author authors = getAuthors();
    Optional<Author> authorsOptional = Optional.ofNullable(authors);
    Optional<List<Book>> booksOptional = authorsOptional.map(author -> author.getBooks());
    booksOptional.ifPresent(books -> System.out.println(books));
}

image.gif


相关文章
|
2月前
isinstance 和 type 的区别
isinstance 和 type 的区别。
38 6
|
6月前
|
Java
Optional 常用方法总结
Optional 常用方法总结
92 2
|
8月前
[已解决]llegal target for variable annotation
[已解决]llegal target for variable annotation
74 1
Optional没有peek函数?自己写一个
Optional没有peek函数?自己写一个
76 0
|
存储 Java 开发者
使用Optional优雅避免空指针异常
在编程世界中, 空指针异常(NullPointerException) 无疑是我们最常遇到的"罪魁祸首"之一。它像一片隐蔽的地雷,静静地等待着我们不小心地踏入,给我们的代码带来潜在的威胁。这种问题虽然看似微小,但却无法忽视。甚至可能对整个程序的稳定性产生重大影响。
74 0
|
容器
Optional容器类
Optional容器类
56 0
|
Java Scala
全面探索Optional类型
全面探索Optional类型
全面探索Optional类型
|
TensorFlow 算法框架/工具
解决TypeError: tf__update_state() got an unexpected keyword argument ‘sample_weight‘
解决TypeError: tf__update_state() got an unexpected keyword argument ‘sample_weight‘
293 0
解决TypeError: tf__update_state() got an unexpected keyword argument ‘sample_weight‘
UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levensh
UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levensh
166 0
UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levensh