Invokation of overridable methods from a constructor
Hi!
I know this is a classic issue, but I 'd really need some advice on this topic.
Considering possible harmful consequences to this practice, I would like to know if there is a way to use the Template pattern within a constructor.
In my context, I think it would be reasonable to have an abstract class with a constructor to call abstract methods that would be defined in subclasses.
Is there any way to put the Template pattern in practice with a constructor?
Thanks in advance,
Tales

