Java 8 Lambdas Hacking

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Venkat Subramaniam was great at Jfokus 2014. Only one problem: you couldn't relax (doze) for even 2 seconds as he dashed through the sessions of "Java 8 Language Capabilities - What's in it for you?" and "Programming in Functional Style with Java 8 Lambdas" ... 

larsvargstrand
Автор

C+* is the combination of C & C++ -Venkat S.

Is it a new recursive definition?

I didn't know this.

psinghiitr
Автор

Using File instead of Path to list directories. 4/10

File I/O is a bad example for parallel processing as well. If you're bottlenecked by I/O, the last thing you want to do is add more threads wanting to read from the same device. Maybe you should consider using asynchronous I/O.

trejkaz
Автор

Venkat is great!!! Which editor / IDE is he using?

agrawaltushar
Автор

Great code write with lambda is cleaner and easier to maintanance and undestand

ytSpoiler
Автор

How can you have a picture in the IDE?

ReflectionOcean
Автор

"Lambdas are the gateway drug, streams are the real addiction" and checked exceptions put you on cold turkey!

cherriedquat
Автор

java 8 totally spoiled the concept of interface.. interfaces with implemented methods and static functions -wtf?

UrpeK
Автор

Lambdas are great but java.util.stream and most of the functional interfaces are fucked up: You choose between a) Lambdas without checked exceptions, b) Checked exceptions without Lambdas, c) ugly exception wrapping code forwarding your checked exceptions wrapped in unchecked exceptions through the Lambdas. Thanks Oracle, that sucks!

cherriedquat