Definations And Use :- Interface
What is Interface An interface in java is a blueprint of a class. Purposes of Interfaces create loosely coupled software support design by contract (an implementor must provide the entire interface) allow for pluggable software allow different objects to interact easily hide implementation details of classes from each other facilitate reuse of software It is used to achieve total […]