Skip to content

Java

Java is both a programming language and a platform. Java's WRITE ONCE and RUN ANYWHERE is just too strong. Java is sleeker, faster, and much more powerful today.

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!

Members Public

User-Defined Customer Interface (Exercise Problem)

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

Members Public

What Are UnaryOperator And BinaryOperator's?

Unary and Binary operators are the other two functional interfaces that most developers are interested in.

Members Public

Course Overview: Functional Programming in Java

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

Members Public

Introduce Yourself To Java Functional Programming

Functional programming(a programming paradigm) was introduced in Java SE 8 and recently gained popularity. The number of lines written by developers in the last few years using functional programming(for open-source projects) did hustle around Java developers. Why developers love functional programming? Java functional programming emphasizes using functions as

Members Public

BiFunction Interface

What is a BiFunction interface? The BiFunction interface is a functional interface defined in the java.util.function package in Java. It represents a function that accepts two arguments of different types and produces a result of another type. The BiFunction interface is similar to the Function interface, but it

Members Public

What Is a Predicate Interface In Java?

It takes an object and checks to see if that object satisfies some criteria. We use this in matching/filtering data. The Predicate takes one argument, and returns a Boolean. The Predicate interface is a functional interface defined in the java.util.function package. It represents a function that takes

Members Public

What Is a Function Interface In Java?

This lesson talks about the third functional interface, which is the Function.