Göksu DenizUnderstanding the way of Singleton Design PatternThe Singleton design pattern is a way to ensure that a class has only one instance throughout the lifetime of an application, and to…Jan 20, 2023Jan 20, 2023
Göksu DenizExplore Resource Managing Approach and RAII Design PatternWe will talk about the C# side in a bit. But first let me start with C++.Jan 13, 2023Jan 13, 2023
Göksu DenizWhat is the Prototype Design Pattern?The prototype design pattern is a creational design pattern that allows an object to be created by copying an existing object, rather than…Jan 12, 2023Jan 12, 2023
Göksu DenizWhat is the Object Pool Design Pattern?In software engineering, the object pool design pattern is a software creational design pattern that uses a set of initialized objects kept…Jan 10, 2023Jan 10, 2023
Göksu DenizWhat is the Multiton Design Pattern?The multiton pattern is a variation of the singleton pattern that allows a single class to have multiple instances, with each instance…Jan 8, 2023Jan 8, 2023
Göksu DenizWhat is the Lazy Initialization Design Pattern?The lazy initialization design pattern is a design pattern in which an object is created only when it is needed. This can be useful for…Jan 8, 20231Jan 8, 20231
Göksu DenizWhat is the Factory Method Design Pattern?The factory method design pattern is a creational design pattern that defines an interface for creating objects in a super class, but…Jan 8, 20231Jan 8, 20231
Göksu DenizWhat is the Dependency Injection Design Pattern?Dependency injection is a design pattern in which a class receives its dependencies from external sources rather than creating them itself…Jan 7, 2023Jan 7, 2023
Göksu DenizWhat is the Builder Design Pattern?The Builder design pattern is a creational design pattern that allows for the step-by-step creation of complex objects using a Builder…Jan 6, 2023Jan 6, 2023
Göksu DenizWhat is the Abstract Factory Design Pattern?The Abstract Factory design pattern is a creational design pattern that provides an interface for creating families of related or dependent…Jan 4, 2023Jan 4, 2023