Domanda

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 ?

È stato utile?

Soluzione

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

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top