I'll provide in description | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I'll provide in description

I can't understand the steps used in main method please explain!! Or tell me the concept used interface test{ int a(int b,int c); static String show(){ return "hello"; } } public class Main{ public static void main (String[] args) { test r=(p,q)->p+q; System.out.println(r.a(1,2)+test.show()); } }

23rd Mar 2021, 5:21 PM
kreddyt
kreddyt - avatar
2 Answers
+ 3
interface which has only one method to implement, is called functional interface and can be implemented by lambda expression : test r = (p, q) -> p + q; same as class TestImpl implements test { int a (int a, int b) { return a + b; } }
23rd Mar 2021, 6:00 PM
zemiak
+ 2
All of this is Java 8 features, you might want to read a little bit about it in order to understand how it is implemented. Concepts you need to particularly look into include- 1) Functional interface 2) Static methods in interface 3) Lambda expressions
23rd Mar 2021, 6:09 PM
Avinesh
Avinesh - avatar