Click here to watch in Youtube :
https://www.youtube.com/watch?v=GDR26pt1zPo&list=UUhwKlOVR041tngjerWxVccw
LambdaDemo.java
https://sites.google.com/site/ramj2eev1/home/javabasics/LambdaDemo_method_accept_lambda_App.zip?attredirects=0&d=1
https://www.youtube.com/watch?v=GDR26pt1zPo&list=UUhwKlOVR041tngjerWxVccw
LambdaDemo.java
@FunctionalInterface
interface StringLengthLambda
{
int getLength(String str);
}
public class LambdaDemo
{
public static void main(String[] args)
{
printLambda(str -> str.length());
}
private static void printLambda(StringLengthLambda stringLengthLambda)
{
int length = stringLengthLambda.getLength("Welcome");
System.out.println("length = " + length);
}
}
Outputlength = 7
Click the below link to download the code:https://sites.google.com/site/ramj2eev1/home/javabasics/LambdaDemo_method_accept_lambda_App.zip?attredirects=0&d=1
No comments:
Post a Comment