Why Object Oriented approach?
A major factor in the invention of Object-Oriented approach is to remove some of the flaws encountered with the procedural approach. In OOP, data is treated as a critical element and does not allow it to flow freely. It bounds data closely to the functions that operate on it and protects it from accidental modification from outside functions. OOP allows decomposition of a problem into a number of entities called objects and then builds data and functions around these objects. A major advantage of OOP is code reusability. Some important features of Object Oriented programming are as follows: • Emphasis on data rather than procedure • Programs are divided into Objects • Data is hidden and cannot be accessed by external functions • Objects can communicate with each other through functions • New data and functions can be easily added whenever necessary • Follows bottom-up approach Concepts of OOP: • Objects • Classes • Data Abstraction and Encapsulation • Inheritance • Polymorphism Briefly
Related Questions
- When using a CMMI model for process improvement, is the use of functional analysis problematic for an object oriented approach?
- How the object oriented approach helps us keep complexity of software development under control?
- How the object oriented approach helps us keep complexity of software development under control?
- How does the Object Oriented approach improve software development?
- How does the Object Oriented approach improve software development?
- Why Object Oriented approach?