Final static

what does FInal static do , will it be overridden
[56 byte] By [hemuproa] at [2007-10-3 4:00:58]
# 1

The only things that can be overridden are non-private, non-final, instance methods.

Nothing static.

Nothing final.

Nothing private.

No variables, only methods.

Note, however, that some of the "NOs" above can be hidden or shadowed.

If you want a more detailed answer, you'll have to ask a more detailed question--for example, what you think overriding means, why you're specifically asking about final and static, etc.

jverda at 2007-7-14 22:00:07 > top of Java-index,Java Essentials,New To Java...
# 2
> what does FInal static do , will it be overriddenHey look at the below thread http://forum.java.sun.com/thread.jspa?threadID=597487&messageID=3172232 I think you have to learn how to google first...Vidya
ragasa at 2007-7-14 22:00:07 > top of Java-index,Java Essentials,New To Java...
# 3
Do you know what final means?Do you know what static means?
floundera at 2007-7-14 22:00:07 > top of Java-index,Java Essentials,New To Java...