JAVA INTERFACE
An interface in Java is a blueprint for a class that defines a set of behaviors (methods ) that a class must implement . Interface in java is mainly used to achieve abstraction and multiple inheritance . Key Characteristics of Java Interface : Abstraction : Interface hide […]