The following is impossible in Java, since interfaces don't have implementations:
class A {
protected void foo() {
/* A impl */
}
protected void baz() {
}
}
interface B {
/* here's what's impossible to have in Java. */
protected void foo() {
/* B impl incl. call to baz() */
}
}
class C extends A {
/* stuff that's not in B... */
}
class D extends C implements B {
void bar() {
foo(); /* uses the B impl */
}
class E extends A {
void bar() {
foo(); /* uses the A impl */
}
class F extends C implements B {
void bar() {
foo(); /* uses the B impl */
}
What I want is for D to inherit C, but not to have to override foo() itself; rather, I want it to merely indicate "I use the known modification from B". What's the right idiom in this scenarion?
Notes:
- Yes, I do expect to need to change my design; but change it to what? That's what I came here to ask.
- I know Java, please don't re-explain abstract classes and interfaces in your answers.
- This should have been possible with multiple inheritance - D could inherit both C and B (assuming no other conflicts).
- Java 6 please; Java 7 if absolutely necessary; Java 8 not relevant for me.
- The B implementation cannot be moved up into A, since the A implementation really is the default and other classes inherit directly from it (e.g. class E).
- C and B are not familiar with each other and cannot mention each other.
- The B implementation cannot be moved down into D, since other classes need it which are not familiar with D (e.g. class F).
- This is not the diamond problem of multiple inheritance since there's no ambiguity regarding whose override to implement. Although there is a sort of a diamond pattern A->B,C->D .
interface Bcan not have an implementation, only a method signature. SoAshould be the only valid one?? – Erik Ekman Jan 6 at 11:58twoclasses. So recheck your program's design to fix this problem. – kaysush Jan 6 at 12:00final, then complain that you can't change the variable. It's like saying "This square is a bad square because I made it circle." So why make it circle? Just make it a square. You're intentionally preventing yourself from doing something, then complaining that you can't do that thing. – Mike Jan 6 at 12:42