What kind of method can you override? - Cracking the Java Coding Interview

preview_player
Показать описание
Cracking the #Java #Coding #Interview - Question 26: What kind of method can you override?
Рекомендации по теме
Комментарии
Автор

You forgot to mention the @Override annotation which is most useful for avoiding mistakes when overriding methods from a super class or interface

miguelibars
Автор

Record and Enum are implicitly final, their methods can not be overridden

AlbanAuzeill
Автор

Like the part of noarg constructor private ☺️

mwigojonathanmark
Автор

final instance methods cannot be overridden

aharonha