Abstract methods in Java
Abstract methods means there is no default implementation for it and an implementing class will provide the details. Essentially, you would have abstract class AbstractObject { public abstract void method(); } class ImplementingObject extends AbstractObject { public void method() { doSomething(); } } So, it’s exactly as the error states: your abstract method can not … Read more