posted 16 years ago
Static methods cannot be overriden because they belong to the class, not to an instance of that class.
A static method don't need an instance to be accessed.
So, when you think you are overriding a static method, the only thing you are doing is redefining it.
(If I'm wrong just tell me please :P)