Good reasons to prohibit inheritance in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:04:52Z http://stackoverflow.com/feeds/question/218744 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java 12 Good reasons to prohibit inheritance in Java? cretzel 2008-10-20T15:05:00Z 2008-10-20T17:49:59Z <p>What are good reasons to prohibit inheritance in Java, for example by using final classes or classes using a single, private parameterless constructor? What are good reasons of making a method final?</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218759#218759 10 Answer by Bill the Lizard for Good reasons to prohibit inheritance in Java? Bill the Lizard 2008-10-20T15:10:05Z 2008-10-20T15:10:05Z <p>You might want to make a method final so that overriding classes can't change behavior that is counted on in other methods. Methods called in constructors are often declared final so you don't get any unpleasant surprises when creating objects.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218761#218761 16 Answer by DJClayworth for Good reasons to prohibit inheritance in Java? DJClayworth 2008-10-20T15:10:49Z 2008-10-20T17:49:59Z <p>Your best reference here is Item 15 of Joshua Bloch's excellent book "Effective Java", called "Design and document for inheritance or else prohibit it". You should really read it, but I'll summarize.</p> <p>The interaction of inherited classes with their parents can be surprising and unpredicatable if the ancestor wasn't designed to be inherited from. Classes should therefore come in two kinds a) classes designed to be extended, and with enough documentation to describe how it should be done b) classes marked final.</p> <p>If you are writing purely internal code this may be a bit of overkill. However the extra effort involved in adding five characters to a class file is very small. If you are writing only for internal comsumption then a future coder can always remove the 'final' - you can think of it as a warning saying "this class was not designed with inheritance in mind".</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218768#218768 3 Answer by John Topley for Good reasons to prohibit inheritance in Java? John Topley 2008-10-20T15:11:54Z 2008-10-20T15:11:54Z <p>One reason to make a class final would be if you wanted to force composition over inheritance. This is generally desirable in avoiding tight coupling between classes.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218769#218769 1 Answer by Jon Skeet for Good reasons to prohibit inheritance in Java? Jon Skeet 2008-10-20T15:12:07Z 2008-10-20T15:12:07Z <p>Inheritance is like a chainsaw - very powerful, but awful in the wrong hands. Either you design a class to be inherited from (which can limit flexibility and take a lot longer) or you should prohibit it.</p> <p>See Effective Java 2nd edition items 16 and 17, or my blog post <a href="http://msmvps.com/blogs/jon_skeet/archive/2006/03/04/inheritancetax.aspx" rel="nofollow">"Inheritance Tax"</a>.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218770#218770 1 Answer by Anson Smith for Good reasons to prohibit inheritance in Java? Anson Smith 2008-10-20T15:12:21Z 2008-10-20T15:12:21Z <p>To stop people from doing things that could confuse themselves and others. Imagine a physics library where you have some defined constants or calculations. Without using the final keyword, someone could come along and redefine basic calculations or constants that should NEVER change.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218774#218774 1 Answer by Mecki for Good reasons to prohibit inheritance in Java? Mecki 2008-10-20T15:13:05Z 2008-10-20T15:13:05Z <p>Hmmm... I can think of two things:</p> <p>You might have a class that deals with certain security issues. By subclassing it and feeding your system the subclassed version of it, an attacker can circumvent security restrictions. E.g. your application might support plugins and if a plugin can just subclass your security relevant classes, it can use this trick to somehow smuggle a subclassed version of it into place. However, this is rather something Sun has to deal with regarding applets and the like, maybe not such a realistic case.</p> <p>A much more realistic one is to avoid an object becomes mutable. E.g. since Strings are immutable, your code can safely keep references to it</p> <pre><code> String blah = someOtherString; </code></pre> <p>instead of copying the string first. However, if you can subclass String, you can add methods to it that allow the string value to be modified, now no code can rely anymore that the string will stay the same if it just copies the string as above, instead it must duplicate the string.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218802#218802 1 Answer by Ray Tayek for Good reasons to prohibit inheritance in Java? Ray Tayek 2008-10-20T15:21:05Z 2008-10-20T15:21:05Z <p>you might want to make immutable objects (<a href="http://en.wikipedia.org/wiki/Immutable_object" rel="nofollow">http://en.wikipedia.org/wiki/Immutable_object</a>), you might want to create a singleton (<a href="http://en.wikipedia.org/wiki/Singleton_pattern" rel="nofollow">http://en.wikipedia.org/wiki/Singleton_pattern</a>), or you might want to prevent someone from overriding the method for reasons of efficiency, safety, or security.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/218905#218905 1 Answer by DavidG for Good reasons to prohibit inheritance in Java? DavidG 2008-10-20T15:51:01Z 2008-10-20T15:51:01Z <p>Also, if you are writing a commercial closed source class, you might not want people to be able to change the functionality down the line, especially if u need to give support for it and people have overridden your method and are complaining that calling it gives unexpected results.</p> http://stackoverflow.com/questions/218744/good-reasons-to-prohibit-inheritance-in-java/219253#219253 0 Answer by seanalltogether for Good reasons to prohibit inheritance in Java? seanalltogether 2008-10-20T17:35:31Z 2008-10-20T17:35:31Z <p>If you mark classes and methods as final, you may notice a small performance gain, since the runtime doesn't have to look up the right class method to invoke for a given object. Non-final methods are marked as virtual so that they can be properly extended if needed, final methods can be directly linked or compiled inline in the class.</p>