vote up 2 vote down star

In a book, it says

the class Name has the property of last name and first name.

Address inherits from Name, and has additional property of street number, street name, city, state, zipcode.

That seems different from the other cases, where

Cat inherits from Animal, and Cat "is-a" Animal.

Is this "is-a" relationship required or mandatory for good object design? Should Address inherit from Name?

Update: since some users asked for the source: alt text

flag

24% accept rate
12  
Bad book. Classic example of abused inheritance. – ammoQ Jun 8 at 10:04
1  
Could you provide the title and author of the book? This seems like a bizarre design decision. Are you sure you have the context correct? – Brian Jun 8 at 10:06
1  
Learning Ruby, p.133, O'Reilly 2007 – Jian Lin Jun 8 at 10:10
1  
Oh, the irony of it! – Neil Butterworth Jun 8 at 10:13

6 Answers

vote up 4 vote down

Yes, inheritance is exactly for "is-a" relationship. In the case of Name and Address it would be perhaps more elegant to have a composite class Person that has member variables of types Name and Address.

But for cases when indeed every entity of Address class also has the same properties as Name class inheritance is acceptable. Again it depends on how this will work in a real problem, it's not a general question.

link|flag
vote up 12 vote down

No, i do not think that address should inherit from Name. They have nothing in common, except for one string field. An address should not have a last name.

Inherritance should only be used when there is a strong and clear relationship where some behaviour is extended.

One should favour composition over inherritance, because it allows for loose coupling and dynamic change of behaviour.

link|flag
You can also use inheritance to reuse code, but that quickly generates deep hierarchies, which are a code smell. So I would NOT advise to do so. – Peter Kofler Jun 8 at 10:03
+1 for composition in this case. Extending Name to become an Address is definitely wrong. – Johannes Rössel Jun 8 at 10:07
vote up 5 vote down

In this case your book is abusing object orientation just to save having to redefine a few variables. Conceptually it just isn't true that Address "is-a" Name. It would have been more natural to have the Address object contain a reference to the Name object (the resident at the given Address).

link|flag
vote up 2 vote down

Yes. When your class B is-a class A, then you can use inheritance. That is, in such situations it is OK to let class B be a subclass of class A.

In situations where this relationship is not clear, then you should consider composition instead of inheritance. (has-a relationship instead of is-a relationship).

That is, the example in your book feels wrong. Adress is not a Name. Adress can have a name though, so composition should be used.

link|flag
vote up 2 vote down

If class B can be used where a class A is expected then you have "is-a" inheritance (see Liskov substitution principle). Otherwise, you just expand a class with new behaviors.

Address can inherit from Name class (I don't agree) but you shouldn't treat it as a Name.

link|flag
vote up 2 vote down

In general: if class D inherits from class B, then D is a B.

In C++: if class D inherits privately from class B, then D is not a B since nobody knows. Stroustrup thinks of this as an alternative to composition. I would consider it one of the mistakes in the design of C++ precisely for the reason that in my understanding, "inherits" should be synonymous to "is a".

link|flag

Your Answer

Get an OpenID
or

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