I have a class that has everything already implemented but its initialization process is different for every child class.
Is there a better idiom to replace the ctor? Is there something more generic/dynamic that I should use?
I have a class that has everything already implemented but its initialization process is
Share
Or use static factory methods. This allows you to have different names for the “constructor” that shows the intent.