You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Curso realizado na plataforma Alura, aplicando novos recursos vindo na versão 8 do Java. Lambda, default methods, Interfaces funcionais, method reference, Stream, Filter, Collectors e novas APIs de datas.
Distintas pruebas con la nueva programación funcional de java. Pruebas sobre functionaInterface, Lambda expressions, stream, api Collection y List, Parallel Stream, ...
The Stream API and the Collectors are two new additions to the JDK in Java 8 that allow the efficient processing of data using the map / filter / reduce approach. It brings many new patterns on the table, and ways to extend them. I learned how to connect streams to non-standard sources of data, how to build streams on other streams. The notion o…