TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Java 8 and lambdas: ooooh that's how it works, then

19 pointsby julsimonabout 10 years ago

8 comments

wasylabout 10 years ago
I honestly expected some insight into internals of Java 8 lambdas or, for example, how `retrolambda` works. Unfortunately this is only introduction to lambdas in general (and I'm pretty surprised many haven't even heard of lambdas before)
dastbeabout 10 years ago
There&#x27;s a lot that could be said about this code, but the worst is that it has an incorrectly implemented swap when one exists in the standard collections library. I don&#x27;t understand why you would show off a feature (which admittedly has an some poor interactions with other aspects of the language) while simultaneously neglecting the standard library and all the language improvements that happened between 1 and 8.<p>Java doesn&#x27;t need anymore disservices.
julsimonabout 10 years ago
Thanks for your comments, guys. Yes, I did push the verbosity setting to the max to underline my point. Unfortunately, there is lot of naive, bloated Java code out there (often much worse than this!) and some of us have to fix it for a living. I&#x27;ll try to add an abstract singleton proxy bean factory next time :D
评论 #9286689 未加载
pavlovabout 10 years ago
This same article and same code example could have been written in 1975 -- &quot;I just figured out how to use function pointers in C...&quot;<p>Even &quot;object orientation&quot; had already been invented back then, but I assume no one could have imagined that it would be perverted into a chronic bulimia of superfluous types as demonstrated by the &quot;LinearSearchModeFactory&quot; example here.
评论 #9286643 未加载
mobiuscogabout 10 years ago
How is this really an improvement over 1 class, with a single method that takes an Enum &#x27;mode&#x27;, which then switches to one of three internal methods ?<p>Lambdas may have some benefits, but this article really doesn&#x27;t demonstrate any.
Camilloabout 10 years ago
Why does the &quot;canonical&quot; Java solution involve a factory, anyway?
评论 #9286607 未加载
fmelaabout 10 years ago
Don&#x27;t use list.get() in a loop; that&#x27;s quadratic for a linked list implementation.
sk5tabout 10 years ago
Too much boilerplate list manipulation here, to be honest.