This is the information I got from the sun tutorial regards to overriding static methods:
http://java.sun.com/docs/books/tutorial/java/javaOO/override.html Quote from the same site:
"Also, a subclass cannot override methods that are declared static in the superclass. In other words, a subclass cannot override a class method. A subclass can hide a static method in the superclass by declaring a static method in the subclass with the same signature as the static method in the superclass."
From the above quote, the sentences contradict each other.
When they say a subclass can hide a static method in the superclass with the same signature, isn't it the same as overriding, duh? (unless I am missing something here).
Thanks!