Question

I have a super class Person with a private attribute age, I want to have subclasses Baby, Adult, Old and instances of these classes are created based on the age of the Person..How do I do this ?

Was it helpful?

Solution

You could implement a class factory that creates the correct instances based on the age.

http://en.wikipedia.org/wiki/Factory_class

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top