03 Sp20 Object Oriented Design
03 Sp20 Object Oriented Design
Lecture 03
Course Instructor: Dr Usman Nasir
Course Code: SE331
Spring 2020
Architecture centric:
Functional (external) view: focuses on the user’s
perspective.
Static (structural) view: focuses on attributes, methods,
classes & relationships.
Dynamic (behavioral) view: focuses on messages between
classes and resulting behaviors.
Benefits of OOAD
Break a complex system into smaller, more manageable
modules.
Work on modules individually.
See the system more realistically—as the users do.
Object Oriented Design Phase
Goals:
Identify classes.
Identify behavior of classes.
Identify relationships among classes.
Artifacts (some of them):
Textual description of classes and most important
responsibilities (key methods).
Diagrams of class relationships.
Diagrams of important usage scenarios.
Many OOD Methods!
The Booch Method
The Coad & Yourdon Method
The Rambaugh Method
The Wirfs-Brock Method
Identify classes & behaviors
Identifying Classes
Well-known authors like Booch, Jacobson and others
give recommendations for finding objects and
classes.
The most common and most important one are :
to use check lists for object candidates and characteristics
of objects
to perform a grammatical analysis of some requirements
documents,
to analyse the application domain and
to start with analysing use cases
Grammatical Analysis
Grammatical Analysis is to analyse the requirement
text for Nouns and Phrases to identify classes.
Nouns suggest objects
Verbs suggest operations
Example:
“An ATM will allow a customer to withdraw
funds and display their account balance. Account
details are held centrally. An account can be
credited or debited. In addition, the bank can
request for an account to be frozen at anytime.”
Nouns suggest objects, Verbs suggest operations
“An ATM will allow a customer to withdraw
funds and display their account balance. Account
details are held centrally. An account can be
credited or debited. In addition, the bank can
request for an account to be frozen at anytime.”
credit
withdraw debit
display freeze
Exercise: Identify Classes and methods
Whenever new patient are seen for the first time, they
complete a patient information form that asks their
name, address, phone number and insurance carrier,
which are stored in the patient information file.
Patients can be signed up with only one carrier, but
they must be signed up to be seen by a doctor. Each
time a patient visits the doctor, an insurance claim is
sent to the carrier for payment. The claim must
contain information about the visit, such as the date,
purpose, and cost. It would be possible for a patient to
submit two claims on the same day.
However, grammatical analysis has its flaws and can
become confusing at times..
Class's responsibilities
Responsibility is an obligation of a class in terms of
its behavior.
Two types
knowing responsibility
doing responsibility
Knowing responsibility
What must a class “know”?
Private encapsulated data
Its Related objects
Things it can derive or calculate
Doing responsibility
What must a class “do”?
Take action (create an object, do a calculation)
Initiate action in other objects
Control/coordinate actions in other objects
SuperClasses:
SubClasses
Responsibility Collaborator
class (top)
responsibilities (left)
collaborators (right)
Making CRC Cards!!!
Make a group of five or six people
developers, domain experts etc..
Responsibility Collaborator
Responsibility Collaborator
Maintains a collection of SnackItems. SnackItem
Allows addition and removal of SnackItems
Exercise
A cinema has multiple theatres, each theatre has seats
arranged in rows. There can be a different number of
seats in every row.
Customers can reserve seats, and are given a row
number and a seat number. They may request bookings
of several adjoining seats. Each booking is for a
particular show (that is a movie at a certain time).
Shows are at an assigned date, time, and price, and are
scheduled in a theatre.
The system stores the customer’s name and telephone
number for reservation.
Discover candidate classes
Make CRC cards for each of your candidate class.
Scenario 1: Making a reservation
Customer come to the CinemaSite (the system) and
wants to reserve two seats to watch a movie at 8 pm.
Using the CRC cards, play through the scenario
How does the system find the show?
Now write responsibilities' and collaborators in CRC
cards.
Thank you!!!
A laboratory for teaching object oriented thinking by
Kent Beck and Ward Cunningham, OOPSLA 1989.
http://c2.com/doc/oopsla89/paper.html
Online tool for CRC Card Making
https://echeung.me/crcmaker/