I have 4 Classes that look like this: Why can’t I access the default implementation coming from extending Bar? Answer BarImpl can not invoke Foo’s default method explicitly, as BarImpl is not directly implementing Foo. It’s extending Bar which directly implements Foo, hence, it’s Bar’s decision to overr…