Skip to content

Who Is This Course For?

This course deep-dives into each of the functional programming concepts that got introduced in the Java programming language.

Gopi Gorantala
Gopi Gorantala
1 min read

Table of Contents

Prerequisites

To take full advantage of this course, one should ideally have the following:

  • Knowledge of Java basics.
  • Create and run a simple Java program.
  • Collections API (optional)

Install Java 8 or above versions if you wish to run the example code snippets locally in your IDE(Integrated Development Environment).

What will you learn in this course?

This course elaborates on the following topics in detail with real-time examples.

  1. What are lambda expressions? How to write them with examples.
  2. Interface types, use of them?
  3. What are functional interfaces, more about the Function package?
  4. Built-in functional interfaces with examples.
  5. Method References.
  6. Streams API.
    A) Transformations
    B) Aggregate functions
    C) Sorting objects
    D) Handle duplicates
    E) min and max, etc.

The most rewarding outcome of this course

The most rewarding outcome of this course is that you will learn

  1. What are the most common ways to solve problems using Java functions and streams API with real-world business use-case examples?
  2. Hands-on practical examples

Resources

GitHub repository - Streams API.

🤩 Happy coding!!

Java

Gopi Gorantala Twitter

Gopi is a highly experienced Full Stack developer with a deep understanding of Java, Microservices, and React. He worked in India & Europe for startups, the EU government, and tech giants.

Comments


Related Posts

Members Public

How To Write Lambda Expressions

This lesson introduces the basic lambda expression structure with tips to write efficient code.

Members Public

What Are Lambda Expressions?

This is an introductory lesson on lambda expressions. You will learn about the lambda operator, expression, syntaxes and more!

Members Public

Power Of Two (Exercise Problem)

This is an exercise problem for your practice. Try to come up with an approach and solve it by yourself. Good Luck!