Elaborate on Liskov Substitution Principle as used in C++ OOD

Asked By 20 points N/A Posted on -
qa-featured

Is the Liskov Substitution Principle limited to Object Oriented Design (OOD) in C++ only or it has application in other programming languages such as Fortran or JAVA? If this principle cannot be adapted and applied, then which other similar design principle can be used for program design in FORTRAN or JAVA? How important is this principle to code maintenance and upgrade? Is it necessary to follow this principle? Will the work be less efficient if the Liskov principle is not followed?

SHARE
Answered By 5 points N/A #190389

Elaborate on Liskov Substitution Principle as used in C++ OOD

qa-featured

Hello,

 

This concept/method has applications in any kind of coding, scripting, or application design. It is no more important than any other possible approach to coding and design. What matters is that the code performs in the way designers and users would like. Better code that is easier to maintain and enhance is a reasonable goal for every professional and organization to have, but there is no single, ultimate way of achieving this.

Related Questions