Reputation: 185
this question is regarding Object Oriented Analysis and design ,UML
in object oriented analysis final result is the class diagramme of system am i right?
in object oriented design final result is implement the class diagramme in code am i right ?
what is the use of UML diagramms in OOAD?
Upvotes: 2
Views: 1444
Reputation: 36295
in object oriented analysis final result is the class diagramme of system am i right? No. The result of the analysis is a model that represents the problem domain. Any diagram used is just a means to reflect the model to its readers.
in object oriented design final result is implement the class diagramme in code am i right ? No. The result is an architectural model which is based on the analysis model. You might be able to generate code from this model. At least a coder can take this model to transform it to code.
what is the use of UML diagramms in OOAD? UML diagrams are used to visualize the model of the problem domain. You can live without the diagrams, but they support communication between humans.
You will use different diagram types depending on what part(s) of the model you will shed light on.
Upvotes: 3
Reputation: 605
UML is the toolbox used by OOAD to express the different design phases in a common and understandable language.
Has you know the 3 main phases of the OOAD involve different kind of UML diagrams
Object-oriented modeling (OOM) is a common approach to modeling applications, systems, and business domains by using the object-oriented paradigm throughout the entire development life cycles. OOM is a main technique heavily used by both OOA and OOD activities in modern software engineering.
See the dedicated Wikipedia page for details.
Upvotes: 3