辞書: java.util.Optional

投稿日:

java.util.Optionalとは

Java SE 8から導入されたクラスです。

チェック例外のようなもの

Effective Java 3rd Editionに以下のように書かれています。

Optionals are similar in spirit to checked exceptions(Item 71), in that they force the user of an API to confront the fact that there may be no value returned.

公式サイト