Wednesday 17 May 2017

Java Tutorial: Lambda expression in java | Java Lambda expressions[Lambda expressions introduction]


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

Click the below Image to Enlarge
Java Tutorial: Lambda expression in java | Java Lambda expressions[Lambda expressions introduction] 
Java Tutorial: Lambda expression in java | Java Lambda expressions[Lambda expressions introduction] 
Java Tutorial: Lambda expression in java | Java Lambda expressions[Lambda expressions introduction] 

Java Tutorial: Lambda expression in java | Java Lambda expressions[Lambda expressions introduction] 
Dog.java
@FunctionalInterface //It is optional
public interface Dog
{
    public void eat();
}
NoLambdaDemo.java
public class NoLambdaDemo
{

    public static void main(String[] args)
    {

        /*
         * Without lambda, Dog implementation using anonymous class
         */
        Dog dog = new Dog()
        {
            @Override
            public void eat()
            {
                System.out.println("eating chicken");
            }
        };
        dog.eat();
    }

}
Output
eating chicken
LambdaDemo.java
public class LambdaDemo
{

    public static void main(String[] args)
    {

        /*
         * With lambda
         */
        Dog dog = () ->
        {
            System.out.println("eating chicken");
        };

        dog.eat();

    }

}
Output
eating chicken
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/LambdaDemo_intro_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/LambdaDemo_intro_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/539015917c8406e4be671410d713073b3971d1a5/BasicJava/LambdaDemo_intro_App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • No comments:

    Post a Comment