关于 static final method 的疑惑
2018-06-08
阅读 4 分钟
5.2kWhen a static method is overriden in a subclass it can still be accessed via the superclass making the final declaration not very necessary. Declaring a static method final does prevent subclasses from defining a static method with the same signature.