If a Father is a Parent and a Parent is a Person and a Person has a Father I create the following:

 class Person{
  Father father;
 }
 class Parent extends Person{}
 class Father extends Parent{}

Instances:

Person p1 = new Person();
Person p2 = new Person();
p1.father = p2; //father is of the type Father

This doesn't work... Now try casting::

Person p1 = new Person();
Person p2 = new Person();
p1.father = (Father)p2;

This doesn't work either.

What does work for this case?

link|improve this question

36% accept rate
Are you asking about a specific language? If so, which one? – anon Jun 6 '10 at 10:11
feedback

3 Answers

Actually, Father is not a sub class of person. It is just a relation.

 class Person {
    Person father;
 }
link|improve this answer
Unless that specific Person had to do something like doParent(Person other).. An interface might be nicer though! – filip-fku Jun 6 '10 at 10:15
Every Person has a father, every person can have one or more children, so every person would have that method. – Maxem Jun 6 '10 at 10:25
Firstly I agree if that fits the needs. But sometimes that generalization might not be enough. For argument's sake, what if we also need to keep track of the mother? A mother can breastfeed, a father can't. Decorator pattern perhaps? I am just trying to learn myself, not argue! – filip-fku Jun 6 '10 at 10:37
That really depends on what you want to do. In this case I'd probably go with either a behaviour wrapper or the decorator pattern. The person has a property Mother, the setter should then check that the value is indeed a female person. You can now be sure, that you are dealing with a female person when ever you use this mother property and with that assumption you could use something like IMotherBehaviour or how ever else you'd like to do this. – Maxem Jun 6 '10 at 10:47
I want to assign properties to a Father and a Parent. In that case these are not relations, but Object on their own. – hsmit Jun 6 '10 at 11:06
feedback

The most obvious thing is that a Father IS a Person. A Person does NOT have to be a Father though, when it comes to the concrete instance. This example specifically, would work if you father field was of type Person, or you instantiated p2 as a new Father.

link|improve this answer
I agree. I choose for the last one: p1.father = new Father(p2); But how should I push all p2's values into the super class Person? – hsmit Jun 6 '10 at 11:04
Just call Person's constructor from Father's constructor - super(1,2,3) – filip-fku Jun 6 '10 at 11:54
feedback

You cannot cast like that. Your person is not a father so casting to one won’t work. You can only cast to something that the object is.

Person p1 = new Person();
Person p2 = new Father();
p1.father = (Father)p2;

Or directly:

Father p2 = new Father();
p1.father = p2;

But being a father isn’t a good differentiation in the class hierarchy. I probably wouldn’t create an own class for it: being a father is just one of many roles that one person fulfils so I would remove that class and declare the father member as a regular Person. Same for Parent.

link|improve this answer
I want to assign properties to a Father and a Parent. In that case these are not relations, but Object on their own. – hsmit Jun 6 '10 at 11:06
1  
@hsmit: That’s simply a bad design. Your decomposition of the problem is at fault. If you want to add extra properties, use composition instead of inheritance. Inheritance is simply not suited to model your requirements. – Konrad Rudolph Jun 6 '10 at 11:19
What do you propose – hsmit Jun 6 '10 at 11:23
@hsmit: As I said, I propose composition. For example, each Person could have a List<Role>, i.e. a list of roles which they perform, where Role is simply some interface. Now you could implement each role, e.g. ParentRole, FatherRole etc. – Konrad Rudolph Jun 6 '10 at 11:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.