Design Principles Flashcards
What is Coupling?
What is the difference between High/strong coupling, medium coupling, and low coupling?
What does low coupling lead to? What does high coupling lead to?
What is cohesion?
What is the difference between low cohesion and high cohesion?
What is the difference between high coupling/low cohesion and low coupling / high cohesion? Which is more desireable?
What does it mean to encapsulate what varies?
What is the duck-hunt example of encapsulate what varies?
Example of encapsulate what varies:
What are the benefits of encapsulating what varies?
What does it mean to “Code to and Interface, Not an Implementation”?
“Code to an Interface, Not an Implementation” example:
What are the benefits of “Code to an Interface, Not an Implementation”?
What does it mean to “Favour Composition Over Inheritance”?
What kind of relationship does “Favour Composition Over Inheritance” establish? What kind of relationahip does “composition/aggregation” establish?
What are the benefits of “Favour Composition Over Inheritance”?
What is the rule of thumb with “Favour Composition Over Inheritance”?
What is Composition?
What is important to note about Composition?
What is Aggregation? What is the difference between Composition and Aggregation?
What are the SOLID Design Principles?
What is the SOLID: Single Responsibility Principle?
What is a good way to tell that you should be using the SOLID: Single Responsibility Principle?
What are the benefits of the SOLID: Single Responsibility Principle?
What is the SOLID: Open/Closed Principle?
What does it mean for a Class to be Open for extension, but closed for modification?
Example of the SOLID: Open/Closed Principle
What are the benefits of the SOLID: Open/Closed Principle?
What is the SOLID: Liskov Substitution Principle?
Example of the SOLID: Liskov Substitution Principle
Go through the ‘class rectangle’ example of the SOLID: Liskov Substitution Principle
.
What is the SOLID: Interface Segregation Principle?
Example of the SOLID: Interface Segregation Principle:
Continued example of the SOLID: Interface Segregation Principle
What is the bottom line and solution for the SOLID: Interface Segregation Principle?
What is the SOLID: Dependency Inversion Principle
SOLID: Dependency Inversion Principle example:
Continued example of the SOLID: Dependency Inversion Principle. What does it mean for a system to be fragile and rigid?