-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathFactory.class.php
executable file
·57 lines (48 loc) · 1.39 KB
/
Factory.class.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
<?php
/**
* 抽象工厂模式应该在日常生产过程中运用的很多了
* 工厂设计模式: 提供获取某个对象的新实例的一个接口, 同时使调用代码避免确定实际实例化基类的步骤
*/
//基础标准CD类
abstract class baseCD{
protected $tracks = array();
protected $band = '';
protected $title = '';
public function setTitle($title){
$this->title = $title;
}
public function setBand($band){
$this->band = $band;
}
public function addTrack($track){
$tmp_count = count($track);
$this->tracks[$tmp_count] = $track;
}
public function printTrack(){
var_dump($this->tracks);
}
}
class CD extends baseCD{
public $type = 'cd';
}
//增强型CD类, 与标准CD的唯一不同是写至CD的第一个track是数据track("DATA TRACK")
class enhadcedCD extends baseCD{
public $type = 'enhadced';
}
//CD工厂类,实现对以上两个类具体实例化操作
class CDFactory {
public static function create($type) {
$class = strtolower($type) . "CD";
return new $class;
}
}
//实例操作
$type = "enhadced";
$objCd = CDFactory::create($type);
$tracksFromExternalSource = array("What It Means", "Brr", "Goodbye");
$objCd->setBand("Never Again");
$objCd->setTitle("Waste of a Rib");
foreach ($tracksFromExternalSource as $track) {
$objCd->addTrack($track);
}
$objCd->printTrack();