Ver código fonte

更新 '_posts/stream.md'

aaronwei 5 anos atrás
pai
commit
0ff537f7ce
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      _posts/stream.md

+ 1 - 1
_posts/stream.md

@@ -2,7 +2,7 @@
 title: Java流库详解(java.util.stream)
 date: 2020-07-06 12:00:00
 tags: Java
-cover: https://static.jqwei.com/blog/img/IMG_3459.PNG
+cover: https://static.jqwei.com/blog/img/IMG_3460.PNG
 categories: 编程语言
 ---
 > 流提供了一种让我们可以在比集合更高的概念级别上指定计算的数据视图。通过使用流,我们可以说明想要完成什么任务,而不是说明如何去实现它。(这一点受益于lambda表达式)我们将操作的调度留给具体的实现去解决。