|
|
|
|
|
by freidenker
1656 days ago
|
|
The snippets actually do the same thing, as long as you add a .findFirst() to the first example to make it valid Java code. Intermediate stream operations like map or filter are always lazy. And .findFirst() is a short-circuiting terminal operation, that does not need to consume all stream elements. https://docs.oracle.com/en/java/javase/11/docs/api/java.base... |
|
Truth is java streams and, even more, reactive java are the only two things that make java bearable, god save who invented them.
If I had to program java with for loops and list.add or null checks everywhere, I would probably kill myself on the spot.
But the amount of programmers taught to program like it's still 1995 it's so damn high
And I am closer to my 50s than my 40s, I can't understand why people fresh from uni say they can't understand something like
with the benefit of being lazy and only inspecting list items up to the first one that matches (and if you don't mutate any data, easily parallelizable)