Can an abstract class have a final method in Java?
|
Sure. Take a look at the Template method pattern for an example.
Classes that extend An abstract class can also have methods that are neither abstract nor final, just regular methods. These methods must be implemented in the abstract class, but it's up to the implementer to decide whether extending classes need to override them or not. |
||||
|
|
|
Yes. Hint: just fire up your favorite IDE (eclipse, netbeans, etc) and try it out. It will complain if it does not work. |
|||||||
|
|
Yes, it can. But the final method cannot be abstract itself (other non-final methods in the same class can be). |
|||
|
|
|
Yes, those methods cannot be overriden in subclasses. An example of that is the template method pattern... |
|||
|
Of course, it means you can subclass it, but you cannot override that particular method. |
|||
|
|
|
Yes. |
|||
|
Yes. The |
|||
|
|
|
In Abstract Class methods may be defined or not. If we extend the abstract class then only it has meaning, so what ever methods we declare or defined in Abstract call it will over ride in subclass. So we can declare a method as final in Abstract class, and it will be over ridden in subclass. |
|||||
|