Open In App

Block Lambda Expressions in Java

Improve
Improve
Like Article
Like
Save
Share
Report

Lambda expression is an unnamed method that is not executed on its own. These expressions cause anonymous class.  These lambda expressions are called closures. Lambda’s body consists of a block of code. If it has only a single expression they are called “Expression Bodies“.  Lambdas which contain expression bodies are known as “Expression Lambdas“.  Below is an example of Lambda expression in a single line.

Block Lambda contains many operations that work on lambda expressions as it allows the lambda body to have many statements.  This includes variables, loops, conditional statements like if, else and switch statements, nested blocks, etc. This is created by enclosing the block of statements in lambda body within braces {}. This can even have a return statement i.e return value.

Syntax: Lambda Expressions

(parameters) -> { lambda body }

Now first let us do understand the Lambda expression to get to know about the block lambda expression.

Illustration: 

In this case, lambda may need more than a single expression in its lambda body.  Java supports Expression Lambdas which contains blocks of code with more than one statement. We call this type of Lambda Body a “Block Body“. Lambdas that contain block bodies can be known as “Block Lambdas“.

 Example Representing the Lambda expression

Java




// Java Program to illustrate Lambda expression
 
// Importing input output classes
import java.io.*;
 
// Interface
// If1 is name of this interface
interface If1 {
 
    // Member function of this interface
    // Abstract function
    boolean fun(int n);
}
 
// Class
class GFG {
 
    // Main driver method
    public static void main(String[] args)
    {
        // Lambda expression body
        If1 isEven = (n) -> (n % 2) == 0;
 
        // Above is lambda expression which tests
        // passed number is even or odd
 
        // Condition check over some number N
        // by calling the above function
        // using isEven() over fun() defined above
 
        // Input is passed as a parameter N
        // Say custom input N = 21
        if (isEven.fun(21))
 
            // Display message to be printed
            System.out.println("21 is even");
        else
 
            // Display message to be printed
            System.out.println("21 is odd");
    }
}


 
 

Output

21 is odd

 

Now switching over to the implementation of the block lambda expression followed by two examples as shown below:

 

Implementation: 

 

Example 1:

 

Java




// Java Program to illustrate Block Lambda expression
 
// Importing all classes from
// java.util package
import java.io.*;
 
// Block lambda to find out factorial
// of a number
 
// Interface
interface Func {
    // n is some natural number whose
    // factorial is to be computed
    int fact(int n);
}
 
// Class
// Main class
class GFG {
    // Main driver method
    public static void main(String[] args)
    {
        // Block lambda expression
        Func f = (n) ->
        {
            // Block body
 
            // Initially initializing with 1
            int res = 1;
 
            // iterating from 1 to the current number
            // to find factorial by multiplication
            for (int i = 1; i <= n; i++)
                res = i * res;
            return res;
        };
 
        // Calling lambda function
 
        // Print and display n the console
        System.out.println("Factorial of 5 : " + f.fact(5));
    }
}


 
 

Output

Factorial of 5: 120

Here in this block lambda declares a variable ‘res’, for loop and has return statement which are legal in lambda body.

 

Example 2:

 

Java




// Java Program to illustrate Block Lambda expression
 
// Importing all input output classes
import java.io.*;
 
// Interface
// Functional interface named 'New'
interface New {
 
    // Boolean function to check over
    // natural number depicting calendar year
 
    // 'n' deepicting year is
    // passed as an parameter
    boolean test(int n);
}
 
// Class
// Main class
class GFG {
 
    // Main driver method
    public static void main(String[] args)
    {
        // block lambda
        // This block lambda checks if the
        // given year is leap year or not
        New leapyr = (year) ->
        {
            // Condition check
            // If year is divisible by 400 or the
            // year is divisible by 4 and 100 both
            if (((year % 400 == 0)
                 || (year % 4 == 0) && (year % 100 != 0)))
 
                // Returning true as year is leap year
                return true;
            else
 
                // Returning false for non-leap years
                return false;
        };
 
        // Calling lambda function over
        // custom input year- 2020
 
        // Condition check using the test()
        // defined in the above interface
        if (leapyr.test(2020))
 
            // Display message on the console
            System.out.println("leap year");
        else
 
            // Display message on the console
            System.out.println("Non leap year");
    }
}


 
 

Output

leap year

Here in this block lambda has if-else conditions and return statements which are legal in lambda body.

 



Last Updated : 22 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads