Browse Category: Java Core

Java 8 Default Method Example

Let’s understand why we need default methods which have been added in Java 8. Assume that we have an Interface with some abstract methods  and it has many implementation classes. Now if we want to add new method in the Interface it means we need to change all implementations. Continue Reading