Is there any other method of stopping inheritance of a class apart from declaring it as final or by declaring its constructor as private?
|
1
|
|||||||||||
|
|
|
Two more options:
(Not that I suggest using these techniques, it just came to my mind. I would use final class and/or private constructor) |
||||||||||
|
|
|
A comment
|
||||||||||
|
|
|
Final was created to solve this problem. |
||
|
|
|
|
Using
If you want to prevent individual methods from being overridden, you can declare them as final instead. (I'm just guessing here, as to why you would want to avoid making the whole class final.) |
||||
|
|
|
Make your constructors private and provide factory functions to create instances. This can be especially helpful when you want to choose an appropriate implementation from multiple, but don't want to allow arbitrary subclassing as in
|
||
|
|
|
|
|
|||
|
|
|
I'd have to say it's typically bad form. Though there are almost always cases where something is valid, I'd have to saying stopping inheritance in an OO world is normally not a good idea. Read up on the Open-Closed Principle and here. Protect your functionality but don't make it impossible for the guy who comes in and supports it... |
||||||||||||
|
