New: design-patternsAll contenthive-129948hive-196917krzzanhive-183959steemhive-180932photographyhive-166405hive-144064uncommonlabhive-185836bitcoinhive-183397hive-150122hive-188619krsuccesslifehive-124908hive-101145hive-139150hive-103599hive-184714hive-109690hive-145157TrendingNewHotLikersslawas (35)in design-patterns • 6 years agoDesign patterns: StrategyToday we start the last of design patterns (in the end !!!), which is called Strategy at reading of this article before someone reaches the bottom of the article to the section "relations with other…slawas (35)in design-patterns • 6 years agoDesign patterns: StateToday, about a fairly simple pattern called State, which serves to the very simple operation, as the name says to change the behavior of the object, when its internal state changes, i.e. when some…slawas (35)in design-patterns • 6 years agoDesign patterns: CommandToday, the pattern a little more complicated than the previous one, ie the Command pattern, is very similar to the Chain of Responsibility pattern, however, it differs a little, has a very similar…slawas (35)in design-patterns • 6 years agoDesign patterns: MementoWe are starting another design pattern today, it is called Memento, it is a very simple to understand pattern, also the main picture of this article also translates the pattern, at the same time…slawas (35)in design-patterns • 6 years agoDesign patterns: VisitorWe are taking care of another design pattern, and it is Visitor, now entries can be irregular, I have some responsibilities, but a series of design patterns I want to finish :) We go with the theme…slawas (35)in design-patterns • 7 years agoDesign patterns: ObserverHello again!! We are taking care of another design pattern, which in my opinion must be known compulsorily 🙂. And it is an observer pattern. Discussion The main purpose of this pattern…slawas (35)in design-patterns • 7 years agoDesign patterns: Template MethodHello everyone!! After few months, I’m again! 😃😎🙂 I had a lot of others activities. Today is about the template method design pattern. Is a lot of to describe but about this is further in the…slawas (35)in design-patterns • 7 years agoDesign patterns: MediatorToday it was supposed to be about an operational pattern called Mediator, which satisfies the last SOLID principle, namely avoiding dependencies between classes, here we create one class that can be…slawas (35)in design-patterns • 7 years agoDesign patterns: Chain of responsibilityToday will be the theme, as I promised in the previous article, about the design pattern called a chain of obligations, also known as the chain of responsibility, it is perfect for assigning…slawas (35)in design-patterns • 7 years agoDesign patterns: IteratorNow I will discuss the Iterator pattern, as the name suggests, it is used to iterate through collections, objects, etc. This is, in a nutshell, more precisely described in the article. Intent…slawas (35)in design-patterns • 7 years agoDesign patterns: InterpreterI am just as I promised after two weeks and as I promised I will be describing the interpreter design pattern, as you can guess it interprets some content on the content we want, ie it is used in…slawas (35)in design-patterns • 7 years agoDesign patterns: FlyweightIt’s time for another pattern, and more precisely for the Flyweight pattern, whose purpose is, in a nutshell, to limit the memory occupied by many objects, further on the article about the…slawas (35)in design-patterns • 7 years agoDesign patterns: ProxyThe proxy pattern is quite similar to the Bridge pattern, but the purpose of the Proxy is different, its purpose is to create an object that will represent another object, so in a nutshell, more…slawas (35)in design-patterns • 7 years agoDesign patterns: BridgeHello everyone! Today topic is about the Bridge design pattern however, we will change some form of the entry into a more structured one, so let’s get to the topic 🙂 Intent Separates…slawas (35)in design-patterns • 7 years agoDesign patterns: CompositeHi, I’ve recently found an interesting design pattern called Composite, which is used to fold objects into a tree structure, thanks to which the client sees instead of many objects only one. And…slawas (35)in design-patterns • 7 years agoDesign patterns: FacadeIn this article about the Facade design pattern , whose main task is to make the complex system available to the customer in the form of a simplified, ordered programming interface. Description…slawas (35)in design-patterns • 7 years agoDesign patterns: Dependency Injection and its variationsToday, we will be talk about two design patterns, both are similar to the last solid principle, dependency inversion, in the sense that both are about the same problem, namely creating an instance…slawas (35)in design-patterns • 7 years agoDesign patterns: DecoratorDecorator is one of the most important design patterns, allowing the extension of the existing class, more in detail about the decorator in the article. Description and implementation method As…slawas (35)in design-patterns • 7 years agoDesign patterns: AdapterIn this article, as is clear from the title today is about the Adapter design pattern, the name of which can be guessed enables the cooperation of objects that do not match each other 🙂…slawas (35)in design-patterns • 7 years agoDesign patterns: Object poolIn this article, I will be talking about the design pattern, which is called Object pool, I wanted to describe it now because it is quite similar to the Flyweight pattern. Intent Keeping…