Click here to watch in Youtube :
https://www.youtube.com/watch?v=gl3khAB8uyQ&list=UUhwKlOVR041tngjerWxVccw
LambdaDemo.java
https://sites.google.com/site/ramj2eev1/home/javabasics/LambdaDemo_multi_param_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/LambdaDemo_multi_param_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/539015917c8406e4be671410d713073b3971d1a5/BasicJava/LambdaDemo_multi_param_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
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 BiscuitClick the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/LambdaDemo_multi_param_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/LambdaDemo_multi_param_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/539015917c8406e4be671410d713073b3971d1a5/BasicJava/LambdaDemo_multi_param_App/?at=master
See also:
No comments:
Post a Comment