Top Banner
© 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction • Object-oriented design. • Unified Modeling Language (UML). 1
29

© 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

Dec 21, 2015

Download

Documents

Luke Little
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Introduction

• Object-oriented design.• Unified Modeling Language (UML).

1

Page 2: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

System modeling

• Need languages to describe systems:• useful across several levels of

abstraction;• understandable within and between

organizations.

• Block diagrams are a start, but don’t cover everything.

2

Page 3: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Object-oriented design

• Object-oriented (OO) design: A generalization of object-oriented programming.

• Object = state + methods.• State provides each object with its own

identity.• Methods provide an abstract interface

to the object.

3

Page 4: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Objects and classes

• Class: object type.• Class defines the object’s state

elements but state values may change over time.

• Class defines the methods used to interact with all objects of that type.• Each object has its own state.

4

Page 5: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

OO design principles

• Some objects will closely correspond to real-world objects.• Some objects may be useful only for

description or implementation.

• Objects provide interfaces to read/write state, hiding the object’s implementation from the rest of the system.

5

Page 6: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

UML

• Developed by Booch et al.• Goals:

• object-oriented;• visual;• useful at many levels of abstraction;• usable for all aspects of design.

6

Page 7: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

UML object

d1: Display

pixels: array[] of pixelselementsmenu_items

pixels is a2-D array

comment

object nameclass name

attributes

7

Page 8: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

UML class

Display

pixelselementsmenu_items

mouse_click()draw_box

operations

class name

8

Page 9: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

The class interface

• The operations provide the abstract interface between the class’s implementation and other classes.

• Operations may have arguments, return values.

• An operation can examine and/or modify the object’s state.

9

Page 10: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Choose your interface properly

• If the interface is too small/specialized:• object is hard to use for even one application;• even harder to reuse.

• If the interface is too large:• class becomes too cumbersome for designers

to understand;• implementation may be too slow;• spec and implementation are probably buggy.

10

Page 11: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Relationships between objects and classes

• Association: objects communicate but one does not own the other.

• Aggregation: a complex object is made of several smaller objects.

• Composition: aggregation in which owner does not allow access to its components.

• Generalization: define one class in terms of another.

11

Page 12: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Class derivation

• May want to define one class in terms of another.• Derived class inherits attributes,

operations of base class.

Derived_class

Base_class

UMLgeneralization

12

Page 13: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Class derivation example

Display

pixelselementsmenu_items

pixel()set_pixel()mouse_click()draw_box

BW_display Color_map_display

baseclass

derived class

13

Page 14: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Multiple inheritance

Speaker Display

Multimedia_display

base classes

derived class

14

Page 15: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Links and associations

• Link: describes relationships between objects.

• Association: describes relationship between classes.

15

Page 16: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Link example

• Link defines the contains relationship:

message

msg = msg1length = 1102

message

msg = msg2length = 2114

message set

count = 2

16

Page 17: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Association example

message

msg: ADPCM_streamlength : integer

message set

count : integer

0..* 1

contains

# contained messages # containing message sets

17

Page 18: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Stereotypes

• Stereotype: recurring combination of elements in an object or class.

• Example:• <<foo>>

18

Page 19: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Behavioral description

• Several ways to describe behavior:• internal view;• external view.

19

Page 20: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

State machines

a b

state state name

transition

20

Page 21: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Event-driven state machines

• Behavioral descriptions are written as event-driven state machines.• Machine changes state when receiving

an input.

• An event may come from inside or outside of the system.

21

Page 22: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Types of events

• Signal: asynchronous event.• Call: synchronized communication.• Timer: activated by time.

22

Page 23: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Signal event

<<signal>>mouse_click

leftorright: buttonx, y: position

declaration

a

b

mouse_click(x,y,button)

event description

23

Page 24: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Call event

c d

draw_box(10,5,3,2,blue)

24

Page 25: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Timer event

e f

tm(time-value)

25

Page 26: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Example state machine

regionfound

got menuitem

calledmenu item

foundobject

objecthighlighted

start

finish

mouse_click(x,y,button)/find_region(region)

input/outputregion = menu/which_menu(i) call_menu(I)

region = drawing/find_object(objid) highlight(objid)

26

Page 27: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Sequence diagram

• Shows sequence of operations over time.

• Relates behaviors of multiple objects.

27

Page 28: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Sequence diagram example

m: Mouse d1: Display u: Menu

mouse_click(x,y,button)which_menu(x,y,i)

call_menu(i)

time

28

Page 29: © 2008 Wayne Wolf Overheads for Computers as Components, 2nd ed. Introduction Object-oriented design. Unified Modeling Language (UML). 1.

© 2008 Wayne WolfOverheads for Computers as

Components, 2nd ed.

Summary

• Object-oriented design helps us organize a design.

• UML is a transportable system design language.• Provides structural and behavioral

description primitives.

29