Evgenii Legotckoi
Sept. 19, 2018, 8:27 p.m.

Design PatternsGenerative Design Patterns - Prototype

Prototype, шаблоны проектирования, Прототип, abstract

Goals

  • Specify the types of objects to create using the prototype instance and create new objects by copying this prototype.
  • Create one instance of the class to use as the source for all future instances.
  • The new operator is considered …
Read
Evgenii Legotckoi
Sept. 18, 2018, 3:11 p.m.

DelphiExample - Abstract Factory in Delphi

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

This pattern is ideal where you want to isolate your application from the implementation of the concrete classes. For example if you wanted to overlay Delphi's VCL with a common VCL layer for both 16 and 32 bit applications, you …

Read
Evgenii Legotckoi
Sept. 17, 2018, 7:47 p.m.

JavaExample - Abstract Factory in Java

abstract, Java

Abstract Factory classes are often implemented with Factory Methods, but they can also be implemented using Prototype. Abstract Factory might store a set of Prototypes from which to clone and return product objects.

  • Factory Method: creation through inheritance.
  • Prototype: creation …
Read
Evgenii Legotckoi
Sept. 17, 2018, 5:48 p.m.

PHPExample - Abstract Factory in PHP

abstract, PHP

An example of a design pattern An abstract factory in PHP


  1. <?php
  2. /*
  3. * Abstract Factory classes
  4. */
  5.  
  6. abstract class DB_Abstraction_Factory {
  7. protected $settings = array();
  8. protected function __construct() {
  9. $this->settings = Settings::getInstance();
  10. }
  11.  
  12. abstract public function createInstance();
  13. }
  14.  
  15. class
Read
Evgenii Legotckoi
Sept. 17, 2018, 3:37 p.m.

Design PatternsGenerative Design Patterns - Factory Method

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

Goals

  • We define an interface for creating an object, but let the subclasses decide which class to create. A factory method allows you to instantiate a class for subclasses.
  • Definition of a "virtual" constructor.
  • The new operator is harmful.

Problems …

Read
Evgenii Legotckoi
Sept. 13, 2018, 6:03 p.m.

PythonExample - Abstract Factory in Python

abstract, factory, abc, python

An example of an abstract factory in the Python programming language


  1. """
  2. Provide an interface for creating families of related or dependent
  3. objects without specifying their concrete classes.
  4. """
  5.  
  6. import abc
  7.  
  8.  
  9. class AbstractFactory(metaclass=abc.ABCMeta):
  10. """
  11. Declare an interface for operations that …
Read
Evgenii Legotckoi
Sept. 13, 2018, 4:12 p.m.

C++Example - Abstract Factory in C ++

cpp, шаблоны проектирования, abstract, new

Discussion. "Think of object creation as a factory that spawns those same objects."

Here we assign object creation responsibilities to the factory object, and then use inheritance functions and virtual members to provide a "virtual constructor" capability. So there are …

Read
Evgenii Legotckoi
Sept. 13, 2018, 4:01 p.m.

Design PatternsGenerative Design Patterns - Abstract Factory

шаблоны проектирования, абстрактная, abstract, new, фабрика

The reasons

  • Providing an interface for creating families of related or dependent objects without specifying their specific classes.
  • Hierarchy that encapsulates: many possible "platforms" and building a set of "products".
  • The new operator is considered harmful.

Problems

If an application …

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