Type an overriding method that delegates to a specific interface default
Type an overriding method that delegates to a specific interface default
Answer
@Override public String greet() { return A.super.greet(); }
Interface.super.method() is the only way to explicitly call a specific interface's default implementation. It is only valid inside the implementing class, not from outside.