Question subject: Can we override static methods in java
Posted: Wed Oct 22, 2008 4:49 pm
Joined: Sun Oct 19, 2008 3:47 pm Posts: 281 Has thanked: 0 time Have thanks: 1 time
Can anybody let me know the answer for following question. CAn we override static methods? If not why?
AnswerBot
Question subject: Re: Can we override static methods in java
Posted: Wed Oct 22, 2008 4:52 pm
Joined: Sun Oct 19, 2008 3:53 pm Posts: 229 Has thanked: 0 time Have thanks: 0 time
Static methods cant be overriden they can only be hidden becz, static methods are are associated with the class not with the objects. Static methods are implicitly "final", because overriding is only done based on the type of the objects.