Interface in Java | Use, Example Program
An interface in Java is syntactically similar to a class but can have only abstract methods declaration and constants as members. In other words, an interface is a collection of abstract methods and constants (i.e. static and final fields). It is used to achieve complete abstraction. Every interface in java … Read more