I was just reading through the book and it had the terms, "HAS-A" and "IS-A" in it. Anyone know what they mean specifically? Tried searching in the book, but the book is 600 pages long. Thanks!
|
A A Academically, the terms are used to decide between composition and inheritance. |
|||||
|
|
This is object-oriented programming and UML terminology, not Java-specific. There are actually three cases you should be aware of:
The difference between (2) and (3) is subtle yet important to differentiate. Together they are forms of association. What's the difference? Composition implies the child object cannot live out of the context of the parent (destroy the house and rooms disappear) whereas aggregation implies the child can exist on its own (destroy the house and the occupant goes elsewhere). |
|||||||
|
|
Has-a means that the Class in question 'has a' field of a type. Is-a means that the Class extends from a superclass or implements an interface. The |
|||
|
|
|
This isn't java specific, it's OO specific. IS-A means you can have a class that "is a" something. Like a student "IS-A" person. This is used to describe one object being a subclass of another. Sometimes there isn't a IS-A relationship between two classes, but a "HAS-A" is more appropriate. Example, a chair "HAS-A" leg. or several. this is called aggregation, as opposed to inheritance. I wont go into the details of when to use each, because it depends on how the classes are being used and even if that is known there is so much to consider, a new question for a specific case would be more appropriate. |
|||||
|
|
IS-A, HAS-A etc. are not really very OO. Instead, Liskov substitution principle is OO. Uncle Bob sheds some light on the history of IS-A at http://www.hanselminutes.com/default.aspx?showID=163
|
|||
|
|
|
as cletus points out, is-a is different. but be careful with has-a. this can mean composition (lifetime responsbility), aggregation (part-of something), or simply uses-a (has a reference to, knows how to build one or find one). the latter is just an association. |
||||
|
|
Is a = Special kind of e.g. Car is special kind of Vehicle. Has a = It physically has something, e.g Car has an engine. |
||||
|
|
