Object-Oriented Design and Functional Decomposition: A Look at Two Software Design Methodologies
- Get link
- X
- Other Apps
Object-oriented design
Object-oriented design is a software design approach that is based on the concept of “objects”, which represent data and the functions that operate on that data. In an object-oriented system, objects are created from templates called “classes”, which define the properties and behaviors of objects. Objects can interact with one another through the use of methods, which are functions associated with a particular object.
The steps involved in object-oriented design are as follows:
- Identify the problem to be solved
- Identify the objects in the system
- Define the relationships between objects
- Define the interface for each object
- Document the design
Sample Object Oriented design of Library Management System.

Functional Decomposition Design
Functional decomposition is a design methodology that involves breaking a system down into smaller, more manageable components or functions based on the ways in which they contribute to the overall system.
Steps to do functional Decomposition
- Identify the system or process to be decomposed
- Identify the high-level functions of the system
- Decompose each high-level function into more detailed sub-functions
- Repeat the decomposition process for each sub-function
- Define the interfaces between functions
- Document the functional decomposition
Sample Functional Decomposition of Library Management system

Conclusion
functional decomposition can be a useful technique for discovering and organising requirements in the early stages of a project. However, it is important to remember that functional decomposition alone is not a sufficient design methodology. While it can help to identify the individual tasks or functions that a system needs to perform, it does not provide much guidance on how those functions should be implemented or organised.
It is worth considering multiple design methodology fusion during different phases of project implementation as well as non-functional requirements while doing design like maintainability, performance and security.
- Get link
- X
- Other Apps
