Kotlin Interface

Interface An interface is a blueprint for a class. An interface defines a set of abstract methods (methods without a body) and possibly some constants (static final fields). It provides…

0 Comments

Java Generic Interfaces

A generic interface is an interface that declares one or more type parameters, allowing the interface to work with different types. The syntax for declaring a generic interface is similar…

0 Comments

Java Functional Interface

It’s an interface with just only one abstract method. it can have any number of default or static methods . lambdas can only operate on functional interface. it is also…

0 Comments