Gerry Giese
Posts: 18
Nickname: gerryg
Registered: Feb, 2003
|
|
Re: OOD and OOP
|
Posted: Feb 26, 2003 9:16 PM
|
|
I will also recommend a good book - http://www.amazon.com/exec/obidos/ASIN/0521785197 "The Object Primer" by Scott Ambler. It covers the whole OO thing quite well.
You're basic three are:
OOA = Object-oriented Analysis
-- Use cases, use case diagrams, business rules, UI screen definitions, CRC cards, etc.
OOD = Object-oriented Design
-- Class diagrams, sequence diagrams, activity diagrams, data modeling, etc. Note that high-level version of these can and often are used in OOA as well.
OOP = Object-oriented Programming
-- Writing (implementing) the code in an OO language as modeled in OOA/OOD. Most common are C++ and Java.
Hope this helps some.
|
|