Interface Segregation Principle
Interface Segregation Principle #Java #OOP #Spring
Interfaces form a core part of the Java programming language and they are extensively used in enterprise applications to achieve abstraction and to support multiple inheritance of type- the ability of a class to implement more than one interfaces. From coding perspective, writing an interface is simple. You use the interfacekeyword to create an interface and declare methods in it. Other classes…
View On WordPress










