Abstract classes can contain final methods? This is what
i just read somewhere and i think that the statement is
inaccurate.
They go on to say that Abstract Classes can contain
bolth final methods and non-abstract methods.
The latter i can see as being correct becuse it is implied that
a method declared in an abstract class is abstract wether the
abstract key word is specified or not.
A final method cannot be overridden. An abstract method implies
that somewhere down the line implementation will be provided
for this method, so how can you have bolth?


Reply With Quote
