Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6dd0e09

Browse files
committed
Add link to stream tutorial
1 parentf4309c4 commit6dd0e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ optional.ifPresent((s) -> System.out.println(s.charAt(0))); // "b"
357357

358358
A`java.util.Stream` represents a sequence of elements on which one or more operations can be performed. Stream operations are either_intermediate_ or_terminal_. While terminal operations return a result of a certain type, intermediate operations return the stream itself so you can chain multiple method calls in a row. Streams are created on a source, e.g. a`java.util.Collection` like lists or sets (maps are not supported). Stream operations can either be executed sequentially or parallely.
359359

360-
>You should also check out[Stream.js](https://github.com/winterbe/streamjs), a JavaScript port of the Java 8 Streams API.
360+
>Streams are extremely powerful, so I wrote a separate[Java 8 Streams Tutorial](http://winterbe.com/posts/2014/07/31/java8-stream-tutorial-examples/).You should also check out[Stream.js](https://github.com/winterbe/streamjs), a JavaScript port of the Java 8 Streams API.
361361
362362
Let's first look how sequential streams work. First we create a sample source in form of a list of strings:
363363

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp