Click here to watch in Youtube :
https://www.youtube.com/watch?v=jwo7nptBn4E&list=UUhwKlOVR041tngjerWxVccw
LambdaDemo.java
@FunctionalInterface
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");
}
}
Outputeating Mutton
Click the below link to download the code:
No comments:
Post a Comment