Skip to content

Commit 9a359ca

Browse files
committed
Stream接口
1 parent 74b5b03 commit 9a359ca

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,22 @@ Java8 Learning (java8学习) <br>
2222
- java8-Stream接口
2323

2424
[Stream接口的一些基本用法](https://github.com/MyHerux/java-java8-learning/blob/master/src/main/java/com/xu/java8/Stream/Stream.md)
25+
26+
27+
```flow
28+
st=>start: Start|past:>http://www.google.com[blank]
29+
e=>end: End:>http://www.google.com
30+
op1=>operation: My Operation|past
31+
op2=>operation: Stuff|current
32+
sub1=>subroutine: My Subroutine|invalid
33+
cond=>condition: Yes
34+
or No?|approved:>http://www.baidu.com
35+
c2=>condition: Good idea|rejected
36+
io=>inputoutput: catch something...|request
37+
38+
st->op1(right)->cond
39+
cond(yes, right)->c2
40+
cond(no)->sub1(left)->op1
41+
c2(yes)->io->e
42+
c2(no)->op2->e
43+
```

0 commit comments

Comments
 (0)