😺设计模式-工厂模式

This commit is contained in:
zyimm 2023-09-05 17:07:09 +08:00
parent ea2b43abee
commit 79f3969dee

View File

@ -18,9 +18,10 @@ tags: 设计模式
3. cache工厂类创建调用 3. cache工厂类创建调用
# 实现 # 实现
>>这边实现使用PHP代码作为演示其他oop语言逻辑类似。 > 这边实现使用PHP代码作为演示其他oop语言逻辑类似。
1. 😼定义cache工厂类(父类)和依赖类
**😼1.定义cache工厂类(父类)和依赖类**
```php ```php
class Config class Config
@ -80,7 +81,8 @@ class Config
``` ```
2. 😸编写各个类型cache子类 **😸2.编写各个类型cache子类**
```php ```php
class Cache class Cache
{ {
@ -147,7 +149,7 @@ class File extends Cache
``` ```
3. 😺cache工厂类创建调用 **😺3.cache工厂类创建调用**
```php ```php
class Demo class Demo