Homepage
About membership
Sign inGet started
Homepage

Richard Cheng

Richard Cheng
1 Following1 Follower
  • Profile
  • Latest
Latest
Go to the profile of Richard Cheng
Richard Cheng
Oct 6, 2016

D in SOLID

D in the SOLID principles stands for Dependency Inversion Principle. The standard definition of Dependency Inversion Principle says:

1. High-level modules should not depend on low-level modules. Both should depend on abstractions.

Read more…
Go to the profile of Richard Cheng
Richard Cheng
Oct 6, 2016

I in SOLID

I in the SOLID principles stand for Interface Segregation Principle. This states that no client should be forced to depend on methods it does not use. In other words, interface should be as simple and clean as possible. It should give the caller exactly what he/she needs. Don’t expose things they will not…

Read more…
Go to the profile of Richard Cheng
Richard Cheng
Oct 6, 2016

L in SOLID

L in the SOLID principles stand for the Liskov substitution principle. It states that objects in a program should be replaceable with instances of their subtypes without altering the correctness of that program.

Read more…