摘要: ofNullable 使用静态方法 ofNullable() 创建一个即可空又可非空的 Optional 对象 String name = null; Optional<String> optOrNull = Optional.ofNullable(name); System.out.println 阅读全文
posted @ 2023-04-10 07:00 his365 阅读(84) 评论(0) 推荐(0) 编辑