Pergunta

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 ?

Foi útil?

Solução

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

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top