PHP设计模式-桥接

适用性

  • 基础的结构型设计模式:将抽象和实现解耦,对抽象的实现是实体行为对接口的实现。
  • 例如:人 => 抽象为属性:性别 动作:吃 => 人吃的动作抽象为interface => 实现不同的吃法。

UML

代码示例

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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111

/**
* 人抽象类
*/
abstract class PersonAbstract
{
/**
* 性别
* @var string
*/
protected $_gender = '';

/**
* 使用的吃饭工具
* @var string
*/
protected $_tool = '';

/**
* 构造函数
*
* @param string $gender 性别
* @param EatInterface $tool [description]
*/
public function __construct($gender='',EatInterface $tool)
{
$this->_gender = $gender;
$this->_tool = $tool;
}

/**
* 吃的行为
*
* @param string $food 实物
* @return void
*/
abstract public function eat($food='');
}
/**
* 男人实类
*/
class PersonMale extends PersonAbstract
{
/**
* 吃的具体方式
*
* @param string $food 食物
* @return string
*/
public function eat($food='')
{
$this->_tool->eat($food);
}
}
/**
* 吃接口
*/
interface EatInterface
{
/**
* 吃
*
* @param string $food 食物
* @return mixed
*/
public function eat($food='');
}

/**
* 用叉子吃实体
*/
class EatByFork implements EatInterface
{
/**
* 吃
*
* @param string $food 食物
* @return string
*/
public function eat($food='')
{
echo "用叉子吃{$food}~";
}
}

/**
* 用筷子吃实体
*/
class EatByChopsticks implements EatInterface
{
/**
* 吃
*
* @param string $food 食物
* @return string
*/
public function eat($food='')
{
echo "用筷子吃{$food}~";
}
}

try {
// 初始化一个用筷子吃饭的男人的实例
$male = new PersonMale('male', new EatByChopsticks());
// 吃饭
$male->eat('大米');

} catch (Exception $e) {
echo $e->getMessage();
}