jdk8之后的新特性
jdk8以后好用常用的新特性的记录
了迹奇有没
刺客排行榜952712138,兼纸后端开发
展开
-
java1.8新增超实用Map方法——Map.getOrDefault()和Map.value()方法详解
1. Map.getOrDefault()/** * Returns the value to which the specified key is mapped, or * {@code defaultValue} if this map contains no mapping for the key. * * @implSpec * The default implementation makes no guarantees about synchro原创 2020-10-28 16:40:19 · 2814 阅读 · 0 评论 -
stream流对象的理解及使用
我的理解:用stream流式处理数据,将数据用一个一个方法去 . (点,即调用) 得到新的数据结果,可以一步达成。有多种方式生成 Stream Source:从 Collection 和数组Collection.stream()Collection.parallelStream()Arrays.stream(T array) or Stream.of()从 Buffered...原创 2020-02-17 10:07:50 · 1065 阅读 · 0 评论