Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know. |
|
|||
|
| ||||
| Core Java - Interview Questions and Answers for 'Functional interface' - 2 question(s) found - Order By Newest | ||||
| ||||
| Ans. This is an informative annotation that specify that the interface is a functional interface. A Function Interface has only one abstract method and many default methods. Compiler generates an error if the interface specified with the annotation doesn't abide by the specifications for functional interface. | ||||
| ||||
| Ans. Create interface with the only one non-overriding abstract method and annotate it with @FunctionalInterface | ||||