-
Notifications
You must be signed in to change notification settings - Fork 14
/
Template.class.php
executable file
·58 lines (50 loc) · 1.08 KB
/
Template.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
58
<?php
/**
* 模板模式
* 定义一个操作中的算法骨架,而将一些步骤延迟到子类中,使得子类可以不改变一个算法的结构可以定义该算法的某些特定步骤
*/
abstract class TemplateBase
{
public function Method1()
{
echo"abstract Method1\n";
}
public function Method2()
{
echo"abstract Method2\n";
}
public function Method3()
{
echo"abstract Method3\n";
}
public function doSomeThing()
{
$this->Method1();
$this->Method2();
$this->Method3();
}
}
class TemplateObject extends TemplateBase
{
}
class TemplateObject1 extends TemplateBase
{
public function Method3()
{
echo"TemplateObject1 Method3\n";
}
}
class TemplateObject2 extends TemplateBase
{
public function Method2()
{
echo"TemplateObject2 Method2\n";
}
}
// 实例化
$objTemplate=new TemplateObject();
$objTemplate1=new TemplateObject1();
$objTemplate2=new TemplateObject2();
$objTemplate->doSomeThing();
$objTemplate1->doSomeThing();
$objTemplate2->doSomeThing();