L11 Flashcards
What are development patterns?
A range of patterns and practices that are commonly used in the software development process.
- Design Patterns
- Solid
What are design patterns?
Reusable solutions to common problems that arise in software design and architecture.
- Common vocabulary
- proven solutions
- community acceptance
What are creational patterns?
Deal with the process of object creation, providing mechanisms for class instantiation or object composition
- Flexibility
- Maintainability
- Consistency
What are structural patterns?
Focus on simplifying the composition of classes and objects to be combined to form larger structures.
What are behavioral patterns?
Focus on the interaction and communication between objects.
What are solid principles?
Single Responsability
Open Close Principle
Liksov Substitution
Interface Segregation
Dependency Inversion
What is single responsibility?
The purpose of a class should be well defined, making it easier to understand and maintain.
What is an open close principle?
Software entities should be designed to allow for easy extension without modifying existing code.
Liskov Substitution
subtypes should be substitutable for their base types.
What is interface segregation?
Classes should not be forced to implement interfaces they do not use, preventing the introduction of unwanted dependencies.
What is dependance inversion?
High level modules and low level modules should both depend on abstractions.