Evgenii Legotckoi
Sept. 21, 2018, 1:18 p.m.

PHPExample - "Builder" design pattern in PHP

PHP, шаблоны проектирования, Строитель, Builder

In the Builder Pattern a director and a builder work together to build an object. The director controls the building and specifies what parts and variations will go into an object. The builder knows how to assemble the object given …

Read
Evgenii Legotckoi
Sept. 21, 2018, 1:13 p.m.

DelphiExample - "Builder" design pattern in Delhpi

Builder, Delphi, Строитель, шаблоны проектирования

The functionality used in Delphi's VCL to create forms and components is similar in concept to the builder. Delphi creates forms using a common interface, through Application.CreateForm and through the TForm class constructor. TForm implements a common constructor using the …

Read
Evgenii Legotckoi
Sept. 18, 2018, 4:06 p.m.

PythonExample - "Builder" design pattern in Python

Строитель, Python, Builder, шаблоны проектирования

Example of "Builder" desnig pattern in Python


  1. """
  2. Separate the construction of a complex object from its representation so
  3. that the same construction process can create different representations.
  4. """
  5.  
  6. import abc
  7.  
  8.  
  9. class Director:
  10. """
  11. Construct an object using the Builder …
Read
Evgenii Legotckoi
Sept. 18, 2018, 3:44 p.m.

C++Example - "Builder" design pattern in C++

cpp, Builder, Строитель, шаблоны проектирования

Discussion. The forte of Builder is constructing a complex object step by step. An abstract base class declares the standard construction process, and concrete derived classes define the appropriate implementation for each step of the process. In this example, "distributed …

Read
Evgenii Legotckoi
Sept. 18, 2018, 3:20 p.m.

JavaExample - "Builder" design pattern in Java

Java, шаблоны проектирования, Builder

Example of "Builder" design pattern in Java


  1. /* "Product" */
  2. class Pizza {
  3. private String dough = "";
  4. private String sauce = "";
  5. private String topping = "";
  6.  
  7. public void setDough(String dough) {
  8. this.dough = dough;
  9. }
  10.  
  11. public void setSauce(String
Read
Evgenii Legotckoi
Sept. 14, 2018, 1:35 p.m.

Design PatternsGenerative Design Patterns - Builder

Builder, шаблоны проектирования, Строитель

The reasons

  • Separating the construction of a complex object from its representation so that the same construction process can create different representations.
  • Dismantling a complex representation, creating one goal from several variations.

Problems

Separation of the object interpretation algorithm (for …

Read
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup