I've been trying to understand inheritance when interfaces are involved. I want to know how the subclasses are created if they follow the following:
For Example, let's say i have:
- a Superclass which implements an Interface I
- and couple of subclasses which extend the superclass A
My Questions
Do i have to provide the implementation of the interface methods 'q and r' in all of the subclasses which extend A?
If i don't provide the implementation of the interface in a subclass will i have to make that subclass an Abstract Class?
Is it possible for any of the subclass to implement I? e.g. Class C extends A implements I, is this possible? even though it's already extending a superclass which implements I?
Let's say i don't provide the implementation of method r from the interface I, then i will have to make the superclass A and Abstract class! is that correct?
My example code:
//superclass
public class A implements I{
x(){System.out.println("superclass x");}
y(){System.out.println("superclass y");}
q(){System.out.println("interface method q");}
r(){System.out.println("interface method r");}
}
//Interface
public Interface I{
public void q();
public void r();
}
//subclass 1
public class B extends A{
//will i have to implement the method q and r?
x(){System.out.println("called method x in B");}
y(){System.out.println("called method y in B");}
}
//subclass 2
public class C extends A{
//will i have to implement the method q and r?
x(){System.out.println("called method x in C");}
y(){System.out.println("called method y in C");}
}
