Thursday, 8 June 2017

Java Tutorial: Java Lambda expressions[Lambda expression example with multiple parameters] ~ foundjava


Click here to watch in Youtube :
https://www.youtube.com/watch?v=gl3khAB8uyQ&list=UUhwKlOVR041tngjerWxVccw



LambdaDemo.java

@FunctionalInterface
interface Dog
{
    public void eat(String foodName1, String foodName2);
}

/**
 * 
 * A lambda expression can have zero or any number of arguments.
 *
 */
public class LambdaDemo
{

    public static void main(String[] args)
    {
        /*
         * Java Lambda Expression Example: Multiple Parameters.
         */
        Dog dog = (foodName1, foodName2) ->
        {
            System.out.println(
                    "eating " + foodName1 + " and " + foodName2);
        };
        dog.eat("Mutton", "Biscuit");
    }

}
Output
eating Mutton and Biscuit
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment