Let's say that class2 extends another class1, and that class2 needs to implement a certain interface. Does class1 have to implement the same interface that class2 is supposed to implement?
Example:
public class Mosquito extends Insect implements FlyingThings {
}
- Does Insects have to implement FlyingThings?
- Or can the subclass "Mosquito" implement a class that the superclass "Insect" does not implement?
Logically, I would reason that, under the given example, the answer is no, because an Insect doesn't necessarily fly. However, of course, this example may just be misleading in that regard.
Anyway, I would like to thank you for your answers in advance.