An open API service indexing awesome lists of open source software.

https://github.com/alexandregama/java8-guides-tutorials

Java 8 Guides and Tutorials - A lot of awesome examples using Java 8 features like Stream, Lambda, Functional Interface, Date and Time API and much more
https://github.com/alexandregama/java8-guides-tutorials

functional-programming guide hacking-code hackingcode java java-8 java-tutorial java8 java8-guides-tutorials jdk jdk8 lambda-expressions learn-to-code learning-by-doing parallel-streams stream-api tutorial

Last synced: 6 months ago
JSON representation

Java 8 Guides and Tutorials - A lot of awesome examples using Java 8 features like Stream, Lambda, Functional Interface, Date and Time API and much more

Awesome Lists containing this project

README

          

# Java 8 Guides and Tutorials

**Java 8** changed the way that we think and code. Here you will see a **lot of articles and tutorials**
about Java 8, how to use its awesome features and how to get your life easier! Enjoy!

- [Twitter](https://twitter.com/_alex_gama)
- [GitHub](https://github.com/alexandregama)
- [Linkedin](https://www.linkedin.com/in/alexandregama/)
- [Instagram](https://www.instagram.com/_alex_gama)
- [Youtube](https://www.youtube.com/channel/UCn09BXJXOCPLARsqNvxEFuw)

Running out of time?
Go straight to what you want :)

- [Java 8 - Lambda Expression](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/lambda/LambdaExpressionTest.java)
- [Java 8 - Default Methods](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/defaultmethod/DefaultMethodTest.java)
- [Java 8 - Functions](https://github.com/alexandregama/java8-guides-tutorials/tree/master/src/test/java/functions)
- [Java 8 - Stream Count](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/streams/StreamWithCountTest.java)
- [Java 8 - Stream with Filter](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/streams/StreamWithFilterTest.java)
- [Java 8 - Stream with Map](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/streams/StreamWithMapTest.java)
- [Java 8 - Stream with Sorted](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/streams/StreamWithSortedTest.java)
- [Java 8 - Stream with Match](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/streams/StreamWithMatchTest.java)
- [Java 8 - Stream Reduce](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/streams/StreamReduceTest.java)
- [Java 8 - Stream Consumer](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/consumer/ConsumerFunctionalInterfaceTest.java)
- [Java 8 - Predicate](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/predicate/PredicateFunctionalInterfaceTest.java)
- [Java 8 - Comparator](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/comparator/ComparatorFunctionalInterfaceTest.java)
- [Java 8 - Suppliers](https://github.com/alexandregama/java8-guides-tutorials/blob/master/src/test/java/suppliers/SupplierFunctionalInterfaceTest.java)