摘要: 四大函数式接口 四大原生函数式接口 函数式接口:Function, 有一个输入和一个输出 断定型接口:Predicate,有一个输入参数,返回值只能是布尔值 消费型接口:Consumer,只有输入值,没有返回值 供给型接口:Supplier,只有返回值 只有一个抽象方法的接口,如Runnable,f 阅读全文
posted @ 2021-12-20 20:32 n1ce2cv 阅读(29) 评论(0) 推荐(0) 编辑
摘要: LocalDateTime LocalDateTime和DateTimeFormatter都是线程安全的 import java.time.LocalDateTime; import java.time.Month; import java.time.format.DateTimeFormatter 阅读全文
posted @ 2021-12-20 20:10 n1ce2cv 阅读(63) 评论(0) 推荐(0) 编辑