Introduction to the simple factory pattern:
The simple factory pattern is a creational pattern, also called the static factory method (Static Factory Method) pattern, but it is not one of the 23 GOF design patterns. The simple factory pattern uses a factory object to decide which product class instance to create. The simple factory pattern is the simplest and most practical pattern in the factory pattern family and can be understood as a special implementation of different factory patterns.
Structural pattern diagram:
Role classification:
Factory (Creator) role
The core of the simple factory pattern, it is responsible for implementing the internal logic of creating all instances. The method of creating a product class in the factory class can be directly called by the outside world to create the required product object.
Abstract Product Role
The parent class of all objects created by the simple factory pattern. It is responsible for describing the public interface common to all instances.
The Concrete Product role
is the creation target of the simple factory pattern. All objects created are instances of a specific class that plays this role.
Introducing the actual situation:
If there is a tenant management system, the tenant types in it are variable, and the rent calculation formula for each tenant type is different
The rent amount of type A tenant = number of days * unit price + Performance*0.005
B-type household rent amount = month*(monthly price+performance*0.001)
Analysis:
1. There is a common calculation method for stores. This is the behavior of physical stores, but their behavior is different. The method is different, so we abstract the store class, the code is as follows:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SimpleFactory.App.IFactroy { public interface Ishop { double Getrent(int days, double dayprice, double performance); } }
2. After abstracting the store, we need to create a specific product class, here is the specific type store, which implements the behavior method of the store . Create a store of type A
using SimpleFactory.App.IFactroy; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SimpleFactory.App.product { //A类型的商店的创建 public class Ashop:Ishop { /// <summary> /// /// A类型商店租金额,天数*单价+绩效*0.005 /// </summary> /// <param name="days">天数</param> /// <param name="dayprice">每天单价</param> /// <param name="performance">日平均绩效</param> /// <returns></returns> public double Getrent(int days, double dayprice, double performance) { Console.WriteLine("A商店的租金算法"); return days * dayprice + performance * 0.01; } } }
3. Create a store of type B:
using SimpleFactory.App.IFactroy; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SimpleFactory.App.product { /// <summary> /// B类型的商店的创建 /// </summary> public class Bshop:Ishop { /// <summary> /// B类型商店的租金=月份*(每月价格+performance*0.001) /// </summary> /// <param name="month">月数</param> /// <param name="monthprice">月单价</param> /// <param name="performance">月平均绩效</param> /// <returns></returns> public double Getrent(int month, double monthprice, double performance) { Console.WriteLine("B商店的租金算法"); return month * (monthprice + performance * 0.001); } } }
4. After creating a type store and implementing the method, think about how to create that kind of object under what circumstances, So the core part of the simple factory pattern: the factory class came out
using SimpleFactory.App.IFactroy; using SimpleFactory.App.product; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SimpleFactory.App.factoryMethod { public class factorymethod { public Ishop CreateShow(string show) { switch (show.Trim().ToLower()) { case"ashop": return new Ashop(); case "bshop": return new Ashop(); default: throw new Exception("该商店不存在"); } } } }
5. Then based on the current store type, it is judged which algorithm should be used for this type of store:
using SimpleFactory.App.factoryMethod; using SimpleFactory.App.IFactroy; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SimpleFactory.App { class Program { static void Main(string[] args) { Ishop As; factorymethod afm = new factorymethod(); As = afm.CreateShow("ashop"); //a 类型的某商店 double total = As.Getrent(30, 300, 2000); //30 天/100元 日平均绩效为2000 Console.WriteLine("该A类型商店的租金为:" + total); Console.WriteLine("============="); Ishop Bs; factorymethod bfm = new factorymethod(); Bs = bfm.CreateShow("bshop"); //b 类型的某商店 total = Bs.Getrent(3, 3000, 60000); //3 月/4000元 月平均绩效为60000 Console.WriteLine("该B类型商店的租金为:" + total); Console.ReadKey(); } } }
Here we have implemented the algorithm requirements for the two types of stores required by the customer, but as a good design architecture, we should also consider the subsequent demand changes. If the customer now adds C-type stores and D-type stores, Their algorithm requirements are different. At this time, we need to create C and D type stores, inherit the Ishop interface, and implement the methods inside. At the same time, we must continue to modify the factory class and add cases in switch to capture and create the corresponding stores. Object, once such a situation occurs, it is not conducive to the scalability of the program and the maintenance of the later project.
Advantages:
The simple factory pattern can decide which specific class of objects should be created based on the information given by the outside world. Through it, the outside world can get rid of the embarrassing situation of directly creating specific product objects.
The outside world is isolated from the specific class, and the coincidence is low.
Clearly distinguish their respective responsibilities and powers, which is conducive to the optimization of the entire software architecture.
Disadvantages:
The factory class concentrates the creation logic of all instances, which easily violates GRASPR's high cohesion responsibility allocation principle
Although the simple factory pattern can adapt to certain changes, the problems it can solve are far from the limited. The classes it can create can only be considered in advance. If you need to add a new class, you need to change the factory class.
How to solve the appeal situation that arises is worth thinking about and will be well solved in the next factory method pattern.
The above is the entire content of this article. I hope it will be helpful to everyone’s learning. I also hope that everyone will support the PHP Chinese website.

如何在PHP中应用简单工厂模式来提高代码的复用性简单工厂模式(SimpleFactoryPattern)是一种常用的设计模式,可以在创建对象时提供一种统一的接口,以便根据不同的条件来创建不同的实例。这种模式可以有效地降低代码的耦合度,提高代码的可维护性和复用性。在PHP中,我们可以利用简单工厂模式来优化代码的结构和逻辑。理解简单工厂模式简单工厂模式由三个

如何通过PHP面向对象简单工厂模式实现对象的版本控制和管理在开发大型的、复杂的PHP项目时,版本控制和管理是非常重要的一环。通过适当的设计模式,我们可以更好地管理和控制对象的创建和使用,从而提高代码的可维护性和扩展性。本文将介绍如何使用PHP面向对象简单工厂模式来实现对象的版本控制和管理。简单工厂模式是一种创建类的设计模式,它通过一个工厂类来实例化指定的对象

如何在PHP中应用简单工厂模式来实现对象的自动化创建简单工厂模式是一种常见的设计模式,它用于创建对象并抽象了实例化对象的过程。在PHP中,应用简单工厂模式可以帮助我们将对象的创建和具体实现解耦,使代码更加灵活和可维护。在本文中,我们将使用一个示例来说明如何在PHP中应用简单工厂模式。假设我们有一个电子产品店,它销售手机和电视机。我们需要根据用户的选择来创建相

Java工厂模式的原理与应用详解工厂模式是一种常用的设计模式,它用于创建对象,以及将对象的创建过程封装起来。Java中的工厂模式有多种实现方式,其中最常见的有简单工厂模式、工厂方法模式和抽象工厂模式。本文将详细介绍这三种工厂模式的原理和应用,并给出相应的代码示例。一、简单工厂模式简单工厂模式是最简单、最常用的工厂模式。它通过一个工厂类,根据传入的参数来返回不

如何通过PHP面向对象简单工厂模式实现对象的多态性简单工厂模式是一种常见的设计模式,它可以通过一个共同的工厂类来创建不同类的对象,并且隐藏了对象的创建过程。PHP面向对象简单工厂模式可以帮助我们实现对象的多态性。简单工厂模式包含三个基本角色:工厂类、抽象类和具体类。首先我们来定义一个抽象类Animal,它包含一个抽象方法say():abstractclas

如何使用PHP面向对象简单工厂模式创建灵活的对象实例简单工厂模式是一种常见的设计模式,它可以在不暴露对象创建逻辑的情况下创建对象实例。这种模式可以提高代码的灵活性和可维护性,特别适用于需要根据输入条件动态创建不同对象的场景。在PHP中,我们可以利用面向对象编程的特性来实现简单工厂模式。下面我们来看一个例子,假设我们需要创建一个图形计算器,能够根据用户输入的形

如何使用PHP面向对象简单工厂模式创建可扩展的对象实例简介:面向对象编程是一种常用的编程范式,它以对象为中心,通过封装、继承和多态等特性来实现代码的重用和灵活性。而PHP语言作为一种支持面向对象的语言,提供了很多强大的特性和工具来实现面向对象编程。其中,简单工厂模式是一种创建对象的设计模式,它通过一个共同的接口来创建相关的对象实例,从而抽象和封装了对象的创建

Java工厂模式是一种创建对象的设计模式,它将对象的创建过程抽象出来,以便在运行时决定实例化哪个具体的类。它通过将实例化逻辑从客户端代码中分离出来,使得代码更加可维护、灵活和可扩展。工厂模式有三种常见的变体,分别是简单工厂模式、工厂方法模式和抽象工厂模式。下面将对这三种变体进行详细解析,并提供具体的代码示例。一、简单工厂模式简单工厂模式(SimpleFac


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

Zend Studio 13.0.1
Powerful PHP integrated development environment
