Here is the code:
interface hi
{
public void meth1();
}
abstract class Hullo
{
public abstract void meth1();
}
public class Hello extends Hullo implements hi
{
public void meth1(){}
}
Question:The code compiles and everything. I wanted to know the meth1() in class Hello is overriding which meth1()?
The ont in the interface or the one in the abstract class and why?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…