class AbstractOverride { staticclass Ex extends Exception {} staticclass A { void f() throws Ex {}
} staticabstractclass B extends A { abstractvoid f();
} staticclass C extends B { void f() {}
} publicstaticvoid main(String[] args) {
B b = new C();
b.f();
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.