Anil Kumar
What is SOLID principles in class designing ?
  • Shivam Shukla
    Feb, 2015 10

    The five design principles the SOLID acronym stands for are, using Andras' brief description:Single Responsibility Principle states that every object should only have one reason to change, i.e. every object should perform one thing only. Open-Closed Principle states that classes should be open for extension and closed for modification. Liskov Substitution Principle states that you should be able to use a derived class in place of a parent class and it must behave in the same manner. Interface Segregation Principle states that clients should not be forced to depend on interfaces they do not use. Dependency Inversion Principle helps to decouple your code by ensuring that you depend on abstractions rather than concrete implementations.

    • 2
  • Shivam Shukla
    Feb, 2015 10

    http://www.infoq.com/news/2013/08/solid-principles-revisited

    • 2
  • Anurag Agarwal
    Aug, 2013 7

    S-Single responsibility principle. (A class should have only a single responsibility.)O-Open/closed principle (software entities … should be open for extension, but closed for modification.)L-Liskov substitution principle (objects in a program should be replaceable with instances of their subtypes without altering the correctness of that program.)I-Interface segregation principle (many client-specific interfaces are better than one general-purpose interface)D-Dependency inversion principle (one should Depend upon Abstractions. Do not depend upon concretions.Dependency injection is one method of following this principle.)

    • 2
  • kailash urmliya
    Feb, 2016 15

    SOLID are five basic principles whichhelp to create good software architecture. SOLID is an acronym where:-S stands for SRP (Single responsibility principle O stands for OCP (Open closed principle) L stands for LSP (Liskov substitution principle) I stands for ISP ( Interface segregation principle) D stands for DIP ( Dependency inversion principle)

    • 1
  • Naresh Avari
    May, 2014 2

    I have recently found a very nice article on this topic at the below link: http://www.codeproject.com/Articles/703634/SOLID-architecture-principles-using-simple-Csharp

    • 1
  • Shweta Lodha
    Apr, 2014 17

    http://www.codeproject.com/Articles/60845/The-S-O-L-I-D-Object-Oriented-Programming-OOP-Prin

    • 1
  • Munesh Sharma
    Apr, 2014 16

    http://www.infoq.com/news/2013/08/solid-principles-revisited/

    • 1


Most Popular Job Functions


MOST LIKED QUESTIONS