Java abstract class implements an interface, both have the same method
问题 While looking at some OOP materials, I thought of this question which confused me a little bit: Consider having the following interface,abstract class, and a concrete class: package one; public interface A { void doStuff(); } package one; public abstract class B implements A { public abstract void doStuff(); } class C extends B{ public void doStuff() { } } Class C won't compile unless it provides an implementation for method doStuff() . The question here: 1-Is doStuff() method in class C an