Advantages of object oriented programming

Advantages
  1. We can build the programs from standard working modules that communicate with one another, rather than having to start writing the code from scratch which leads to saving of development time and higher productivity,
  2. OOP language allows to break the program into the bit-sized problems that can be solved easily (one object at a time).
  3. The new technology promises greater programmer productivity, better quality of software and lesser maintenance cost.
  4. OOP systems can be easily upgraded from small to large systems.
  5. It is possible that multiple instances of objects co-exist without any interference,
  6. It is very easy to partition the work in a project based on objects.
  7. It is possible to map the objects in problem domain to those in the program.
  8. The principle of data hiding helps the programmer to build secure programs which cannot be invaded by the code in other parts of the program.
  9. By using inheritance, we can eliminate redundant code and extend the use of existing classes.Message passing techniques is used for communication between objects which makes the interface descriptions with external systems much simpler.
  10. The data-centered design approach enables us to capture more details of model in an implementable form.
Posted on by