I have an interface named abc
public interface abc { void start(); }
and I have an abstract class called def
public abstract class def extends Thread implements abc { }
I created another class that extends def called ghj
public class ghj extends def {
Please advise if the ghj class ghj not implement the required abc interface methods, then how can the program be compiled?
user2439099
source share