编程语言
首页 > 编程语言> > [WIP] Java Optional

[WIP] Java Optional

作者:互联网

创建: 2021/10/4

 

想想当年遇到新的,都会系统看一遍,把扁平的文字总结成一整张表格一样的博客。这一年很少能静下来这么做了,年纪也增长了不少,那种单纯的总结技术的时代似乎渐行渐远了。

不管怎样吧,从今天开始,以后也要静下心老老实实总结。

 

references: 

https://www.baeldung.com/java-optional

https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html

 

 assign  
static Optional<T> empty() Returns an empty Optional instance.
static Optional<T> of() Returns an Optional with the specified present non-null value.
static Optional<T> ofNullable() Returns an Optional describing the specified value, if non-null, otherwise returns an empty Optional.
   
   
   
   
   
   
   
   
   
   
   
   
   
   

 

标签:Java,specified,value,Returns,static,WIP,Optional,empty
来源: https://www.cnblogs.com/lancgg/p/15366283.html