-
Identifying the objects of a system.
-
Identify their relationships.
-
Make a design which can be converted to executables using OO languages.
OO Analysis --> OO Design --> OO implementation using OO languages
|
-
During object oriented analysis the most important purpose is to identify objects and describing them in a proper way. If these objects are identified efficiently then the next job of design is easy. The objects should be identified with responsibilities. Responsibilities are the functions performed by the object. Each and every object has some type of responsibilities to be performed. When these responsibilities are collaborated the purpose of the system is fulfilled.
-
The second phase is object oriented design. During this phase emphasis is given upon the requirements and their fulfilment. In this stage the objects are collaborated according to their intended association. After the association is complete the design is also complete.
-
The third phase is object oriented implementation. In this phase the design is implemented using object oriented languages like Java, C++ etc.
Add comment