Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Streams in Java 8 - The Good, the Bad, and the Ugly
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Goals Of This Session
- 3 Problem To Solve
- 4 Non-Stream Code
- 5 My Stream Code (Ugly)
- 6 Stream Code (Better)
- 7 Stream Code (Better JDK 9)
- 8 Not Thinking Functional
- 9 Almost Functional (But Not Quite)
- 10 Mixed Iteration (Bad)
- 11 Internal Iteration (But Ugly)
- 12 Internal Iteration (Good)
- 13 Mixed Interation (Still Bad)
- 14 Simple Exercise
- 15 Alternative Reduction (Bad)
- 16 Reduction By Collection (Complex)
- 17 Stream Reuse (Good or Bad?)
- 18 Multi-Sort (Bad)
- 19 Parallel Streams Are Faster, Right?
- 20 Custom Pools For Parallel Streams
- 21 Conclusions