Instructors' Guide
Ch 1
Ch 2
Ch 3
Ch 4
Ch 5
Ch 6
Ch 7
Ch 8
Ch 9
Ch 10
Ch 11
Ch 12
- I suggest taking the example described in
section
[Drawtool],
but you are encouraged to find a different example.
- See slide
[class-design].
- Class invariants may be disrupted by refining methods
that introduce hidden modifications to
the value(s) of instance variables.
See section
[class-invariants].
- The intuition underlying the
Law of Demeter is essentially that ignorance
of how a class is implemented is
beneficial for understanding
and maintenance.
See section
[Demeter].
- See slide
[Demeter].
- Semantic modeling is mostly concerned
with defining the attributes of objects and
the relation between object classes.
Object-oriented modeling, in contrast,
is more concerned with characterizing
the behavioral properties of objects.
However, the two approaches are converging.
- Abstract systems may be regarded as the
characterization of the functionality offered
by a collection of abstract data types.
It specifies the repertoire of methods
available to the user of such a collection.
- Classes corresponding to actual events
specify the interactions which must occur
between objects.
The resources which are needed when the event
occurs are specified when creating the event.
Protection is offered by hiding
the interaction between the objects
in the definition of the event
activation operator.
slide: Answers