#java
Read more stories on Hashnode
Articles with this tag
Singleton pattern allows creation of only a single instance from a class · Singleton pattern allows creation of only a single instance from a...
Prototype(clone) pattern allows copying an object using a prototypical instance · Prototype(clone) pattern allows copying an object using a prototypical...
Builder pattern separates the construction of complex object from its representation · Builder pattern separates the construction of complex object from...
Object Pool (resource pools) provide container to reuse objects that are expensive to create. · Object Pool (resource pools) provide container to reuse...
Abstract Factory Method(kit) provides an interface for creating suits of related objects without specifying their concrete classes · Abstract Factory...
Factory Method(virtual constructor) provides an interface for creating objects in a super-class, but defers instantiation to sub-classes. · Factory...