About Question enthuware.ocpjp.v8.2.1478 :
Posted: Tue Mar 29, 2016 3:38 pm
There is a way:In fact, if a class (or an interface) overrides a default method of an interface, there is no way to invoke that default method from that class (or interface).
Code: Select all
interface IJogger {
default void run() { }
}
interface IRunner extends IJogger {
@Override
default void run() {
IJogger.super.run();
}
}