Published: January 15, 2025
Modified: February 02, 2025
Duration: 3 min
Words: 583
Object-Oriented Analysis and Design is used to solve problems using the Object-Oriented programming paradigm. It maps a problem into a solution that uses objects and interactions between them.
OOA is the process of identifying objects/classes and their interactions from the problem. It is primarily concerned with what the system should do.
It is used to define functional requirements and system behavior without worrying about how it will be implemented. Diagrams like use cases, class, object, requirement gathering, and user stories are part of this phase.
OOD is the process of defining the architecture and components of a system based on the analysis model, focusing on how the system will be built to meet the requirements identified during OOA.
It involves translating the analysis model into a detailed design that can be implemented, ensuring the design adheres to object-oriented principles like SOLID, for maintainability, scalability, and reusability. Design documents, proof-of-concept, prototypes, design patterns, and principles are part of this phase.
Note: It is essential to understand that there are mainly two approaches to doing OOAD: agile and plan-and-document. Agile is more flexible in terms of requirements change, among other things.
To visualize the design of a software system, UML diagrams are used. All diagrams in UML are generally categorized into:
There are many types of UML diagrams for visualizing the design of different kinds of software systems. For software engineers, the following are useful in OOAD:
UML diagrams are used in OOAD to show classes, their important attributes, methods, and relationships among other classes. There are tools that can generate UML diagrams from code you write or generate code from UML diagram designs.
Useful tools:
Now, let's talk about OOAD design principles. It has 5 principles.
To design classes that are easy to change and modify, these 5 design principles are followed:
Together, they are called SOLID.
Design patterns are reusable solutions to common problems in software engineering (and other fields; actually, the idea of design patterns came from other disciplines). Design patterns help implement the SOLID principles in your design. Design patterns tell you a way in which, if you create/structure/implement behavior for your objects, it will be easier and simpler to maintain the SOLID principles.
The thing is that, if you have built some decent projects on your own and faced some problems and somehow solved them yourself, chances are that you already implemented a design pattern that you will learn next, like Singleton, Adapter, etc.
From the book "Design Patterns: Elements of Reusable Object-Oriented Software", there are three categories of design patterns:
It deals with all things related to creating a class or object.
It is to do with how you structure your classes.
It is to do with how your objects behave. How they will communicate with other objects is the focus of these patterns.
An antipattern is a type of code that does not use a design pattern to solve its problem when it is useful to use a design pattern and a good design pattern exists for the problem.