Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that in Java we can't extend a final class. But is there any alternative way where I get the effect of extending a final class?

Because I have a final class with the requirements I am looking for, so if somehow I can reuse this, it would be of great help for me.

Thanks.

share|improve this question

2 Answers

up vote 13 down vote accepted

Create a wrapper for the final class?

Something like this:

class MyClass {
    private FinalClass finalClass;

    public MyClass {
        finalClass = new FinalClass():
    }

    public void delegatingMethod() {
        finalClass.delegatingMethod();
    }
}
share|improve this answer
1  
In practice though this only works if the class being wrapped implemented some kind of interface/abstract class and you can provide a wrapper instance in place of the original. If you cannot do either of these then this is difficult to do with out refactoring the original. – Kevin Brock Jan 28 '10 at 8:07
Of course you can't replace all instances of FinalClass with MyClass. But you can define your own interface to wrap FinalClass with MyClass. Just never reference FinalClass outside of MyClass. – Arne Jan 28 '10 at 9:13

The simplest option would be to write a wrapper, which contains an instance of the final class as a member variable and acts as a proxy to the final class.

This way, it's easy to override or extend methods of the final class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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