我有一个名为abc
public interface abc
{
void start();
}
我有一个名为的抽象类def
public abstract class def extends Thread implements abc
{
}
我创建了另一个扩展def
名为的类ghj
public class ghj extends def
{
//it is defing all the methods of its above abstract class
//now it does not implement the method define in interface start();
}
请告知如果该类ghj
没有实现接口abc
所需的方法,那么程序如何编译?