vote up 2 vote down star
1

Is there any other method of stopping inheritance of a class apart from declaring it as final or by declaring its constructor as private?

flag
What's wrong with final? – lc Jan 16 at 17:03
could you try to explain why you are trying to avoid the use of the final keyword? – shsteimer Jan 16 at 17:14
Probably because there's a framework involved that creates subclasses. – krosenvold Jan 16 at 17:20
Like hibernate or similar – krosenvold Jan 16 at 17:22
i was just trying to find some other ways... they produce interesting results.. I was just curious – shweta Jan 16 at 17:25
show 6 more comments

7 Answers

vote up 11 vote down

Two more options:

  • make each method final, so people can't override them. You avoid accidental calling of methods from subclass this way. This doesn't stop subclassing though.

  • put check into constructor for class:

    if (this.getClass() != MyClass.class) {
        throw new RuntimeException("Subclasses not allowed");
    }
    

    Then nobody will be able to instantiate subclass of your class.

(Not that I suggest using these techniques, it just came to my mind. I would use final class and/or private constructor)

link|flag
Rats, I was just going to post the exception one myself. – mmyers Jan 16 at 17:14
Except if the finalize method is overriden, the instance can be recovered. – Tom Hawtin - tackline Jan 16 at 17:17
@Tom: two wrongs make an evil! – mmyers Jan 16 at 17:19
+1 I didn't think there would be a real answer to this question, but I guess this is as close as you're going to get. – Outlaw Programmer Jan 16 at 17:40
@Tom: this might break the no two security managers rule – Joshua Jan 17 at 3:47
show 2 more comments
vote up 10 vote down

A comment

//Do not inherit please
link|flag
+1 for creativity. – Chris Lively Jan 16 at 17:04
+1 for being nice. – ocdecio Jan 16 at 17:06
I actually believe that's the best solution ever. You could even describe why it shouldn't to be inherited from. – vava Jan 16 at 17:09
Too bad that they might never see the source code. – eleven81 Jan 16 at 17:11
Yes, clearly it should be a javadoc comment :-) – Nick Fortescue Jan 16 at 17:45
vote up 6 vote down

Final was created to solve this problem.

link|flag
vote up 3 vote down

Using final is the canonical way.

public final class FinalClass {
  // Class definition
}

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.)

link|flag
Reasons similar to java.lang.String, I'd guess. – duffymo Jan 16 at 17:38
String is final. – Bill the Lizard Jan 16 at 17:40
vote up 2 vote down

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

abstract class Matrix {
   public static Matrix fromDoubleArray(double[][] elemens) {
     if (isSparse(elements)) {
      return new SparseMatrix(elements);
    } else {
      return new DenseMatrix(elements);
    }
  }
  private Matrix() { ... }  // Even though it's private, inner sub-classes can still use it
  private static class SparseMatrix extends Matrix { ... }
}
link|flag
vote up 1 vote down
  • Use final
  • Use private constructors
  • Use a comment:

    // do not inherit

  • Use a javadoc comment

  • Make every method final, so people can't override them
  • Use a runtime check in the class constructor:

    if (this.getClass() != MyClass.class) { throw new RuntimeException("Subclasses not allowed"); }

link|flag
The comment idea really does not make much sense. A JavaDoc comment makes a lot more sense, but is still not foolproof. – eleven81 Jan 16 at 17:29
vote up 0 vote down

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...

link|flag
1  
Inheritance is way overrated. Unless you design your class for subclassing, you better avoid it. – Peter Štibraný Jan 16 at 17:13
+1, I'm betting that Uncle Bob Martin knows more about OO than just about anyone here. – jcollum Jan 16 at 17:15
+1 to Peter's comment. As I've said elsewhere (many times!) I wish classes were sealed (C#) / final (Java) by default. Inheritance is great, when you really need it - but it can be a pain if you just use it without thinking carefully about it. – Jon Skeet Jan 16 at 17:15
"Design and document for inheritance or else prohibit it." -- Josh Bloch, Effective Java Item 17 – mmyers Jan 16 at 17:17
Read Michael Feather's book "Working Effectively with Legacy Code". It's gotten me through a number of brownfield projects and things like classes and methods you can't touch are major pain points. Even if you didn't intend for it, feature XYZ will need it. All about future proofing... – Mark G Jan 16 at 17:18
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.