+ 3
Static methods in java
Is it possible to overload and override static methods in java?
1 Resposta
+ 7
You can overload a static method in java.
You can't override a static method in java .
There is no compilation error like overriding a final method, but the method will be hidden from the parent and there is no more polymorphism behavior.
https://www.geeksforgeeks.org/can-we-overload-or-override-static-methods-in-java/