Explore every episode of the podcast HnM Tech Talk
| Title | Pub. Date | Duration | |
|---|---|---|---|
| DP6. Singleton | 22 Dec 2024 | 00:14:05 | |
Factory Method is a creational design pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created. | |||
| DP5.Prototype | 19 Dec 2024 | 00:16:37 | |
Prototype is a creational design pattern that lets you copy existing objects without making your code dependent on their classes. | |||
| DP4. Builder | 19 Dec 2024 | 00:13:34 | |
Builder is a creational design pattern that lets you construct complex objects step by step. The pattern allows you to produce different types and representations of an object using the same construction code. | |||
| DP3.Abstract Factory | 18 Dec 2024 | 00:10:29 | |
Abstract Factory is a creational design pattern that lets you produce families of related objects without specifying their concrete classes. https://www.youtube.com/watch?v=xbjAsdAK4xQ https://refactoring.guru/design-patterns/abstract-factory | |||
| DP2.Factory Method | 17 Dec 2024 | 00:13:56 | |
Factory Method is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alter the type of objects that will be created. | |||
| DP1.Design Patterns | 16 Dec 2024 | 00:15:46 | |
Summary | |||
| DP7. Dependency Injection | 22 Dec 2024 | 00:22:48 | |
DI frameworks, conversely, address these issues by enabling mock object injection for testing, dynamic configuration, loose coupling through interfaces, and simplified multithreading and resource management. This ultimately results in more flexible, testable, and maintainable systems. | |||