-
Notifications
You must be signed in to change notification settings - Fork 27
/
15、外观模式.php
61 lines (58 loc) · 1.25 KB
/
15、外观模式.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* 设计模式之外观模式
* 场景:依赖注入, 依赖外观类去调用第三方类的方法,缺点是多次调用会重复占用内存,可配合享元模式实现依赖注入。
* 小黄牛
*/
header("Content-type: text/html; charset=utf-8");
/**
* 动物接口
*/
interface AnimalInterface{
public function Produce(); // 生产方法
}
/**
* 创建 - 鸡模型
*/
class ChiCken implements AnimalInterface{
public function Produce(){
echo "这是一只鸡~<br/>";
}
}
/**
* 创建 - 猪模型
*/
class Pig implements AnimalInterface{
public function Produce(){
echo "这是一只猪~<br/>";
}
}
/**
* 外观类
*/
class AnimalMaker{
private $_chicken; // 鸡模型实例
private $_pig; // 猪模型实例
public function __construct(){
$this->_chicken = new Chicken();
$this->_pig = new Pig();
}
/**
* 生产鸡
*/
public function produceChicken(){
$this->_chicken->produce();
}
/**
* 生产猪
*/
public function producePig(){
$this->_pig->produce();
}
}
# 初始化外观类
$animalMaker = new AnimalMaker();
# 生产一只猪
$animalMaker->producePig();
# 生产一只鸡
$animalMaker->produceChicken();