Thursday, 8 June 2017

Java Tutorial: Lambda expression in java[Lambda expression example with single parameter] ~ foundjava


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



LambdaDemo.java
@FunctionalInterface

interface Dog
{
    public void eat(String foodName);
}

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

    public static void main(String[] args)
    {
        /*
         * Java Lambda Expression Example: Single Parameter.
         */
        Dog dog = (foodName) ->
        {
            System.out.println("eating " + foodName);
        };
        dog.eat("Mutton");
    }

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

CLICK HERE

No comments:

Post a Comment