There is a logic and properties used to create certain object. That logic is going to repeated in several classes. Like some template logic. e.g. suppose I am creating a template to create enums like objects, which basically requires setting an int in constructor and getting value through method.
There are two ways to do this
Create a template superclass which has both of these logics, and extending it whenever we need to create an enum like object.
Create and re write both the logics every where.
Keeping memory and performance of code in mind which option is preferable. What are the pros and cons for it?
extendsome type by another type if and only if they are related in a "IS-A" relation. It does not appear to be the case by your description here.. – Bhaskar Oct 24 '11 at 10:32