
-----------------------------------
Bo0sT
Wed Apr 22, 2009 3:58 am

a quick question on overriding methods
-----------------------------------
So if a method is not abstract or final, it can be overriden at any time, but doesn't have to be. If it is final it cannot be overriden and if it's abstract it must be overriden.

Is this correct?

-----------------------------------
OneOffDriveByPoster
Wed Apr 22, 2009 8:22 am

Re: a quick question on overriding methods
-----------------------------------
So if a method is not abstract or final, it can be overriden at any time.Not if you have a class (i.e., static) method.

-----------------------------------
Bo0sT
Wed Apr 22, 2009 1:25 pm

Re: a quick question on overriding methods
-----------------------------------
oh ok, that makes sence, thanks.
