1. Static methods are inherited but not overridden (though can be redefined in the sub-class)
2. Only methods that are inherited can be overridden. As private methods are not inherited, they are not overridden. Static methods are inherited but not overridden. Constructors are not methods, hence can neither be inherited nor overridden..
Any reason why static methods are not overridden though they are inherited ?
Cor Takken
Ranch Hand
Joined: May 21, 2007
Posts: 58
posted
0
Static methods are not inherited as normal methods are. The static methods are part of the class and are therefor part of every (sub)class. If a (sub)class however decides to re-define that method that method is re-defined. There are however a number of tricky rules which come into play when this happens.. Study the books on this.
SCJP 1.5
Dolphins are grey, but they dream in colour.
Armel Moukoss
Greenhorn
Joined: Mar 28, 2007
Posts: 14
posted
0
Hi everyone, I don't understand why this code produce this result : d a . I think, il would be : d d. Thank you for your help.
Armel
Kelvin Chenhao Lim
Ranch Hand
Joined: Oct 20, 2007
Posts: 513
posted
0
Originally posted by Armel Moukoss: Hi everyone, I don't understand why this code produce this result : d a . I think, il would be : d d. Thank you for your help.
That's a really sneaky question. dostuff() and doStuff() are different method names!
SCJP 5.0
deepesh mathur
Ranch Hand
Joined: Aug 13, 2007
Posts: 39
posted
0
Kelvin Lim man you are really rocking.. i was wondering how many tears(or i must say decades )of experience do you have in java?? hhow do you do this? even such a small piece of mistake you can trace... that's really awesome man.. hats off to you sir..
Abhijit Das
Ranch Hand
Joined: Sep 25, 2007
Posts: 156
posted
0
Originally posted by Armel Moukoss: Hi everyone, I don't understand why this code produce this result : d a . I think, il would be : d d. Thank you for your help.
Armel
Hello Check the methods name ...... so, it is an independent method in Test
thanks Abhijit
Abhijit Das
SCJP 5.0 | SCWCD 1.5
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Static methods are inherited but not overriden