第十章 模版方法模式(考题抄错会做也白搭)

  1. <?php
  2. // 对甲乙两名同学所抄试卷,尽量将相同的部分提到父类
  3. // 金庸小说考题试卷
  4. class TestPaper
  5. {
  6. public function TestQuestion1()
  7. {
  8. echo "杨过说过,后来给了郭靖,炼成倚天剑、屠龙刀的玄铁可能是[]a.球磨铸铁 b.马口铁 c.高速合金钢 d.碳素纤维 \n";
  9. echo "答案 ".$this->answer1()."\n";
  10. }
  11. public function TestQuestion2()
  12. {
  13. echo "杨过、程英、陆无双铲除了情花,造成[]a.使这种植物不在害人 b.使一种珍惜物种灭绝 c.破坏了那个生态圈的生态平衡 d.造成该地区沙漠化 \n";
  14. echo "答案 ".$this->answer2()."\n";
  15. }
  16. public function TestQuestion3()
  17. {
  18. echo "蓝凤凰致使华山师徒、桃谷六仙呕吐不止,如果你是大夫,会给他们开什么药[]a.阿司匹林 b.牛黄解毒片 c.氟哌酸 d.让他们喝大量的生牛奶 e.以上全不对 \n";
  19. echo "答案 ".$this->answer3()."\n";
  20. }
  21. protected function answer1()
  22. {
  23. return '';
  24. }
  25. protected function answer2()
  26. {
  27. return '';
  28. }
  29. protected function answer3()
  30. {
  31. return '';
  32. }
  33. }
  34. // 学生甲抄的试卷
  35. class TestPaperA extends TestPaper
  36. {
  37. protected function answer1()
  38. {
  39. return 'a';
  40. }
  41. protected function answer2()
  42. {
  43. return 'b';
  44. }
  45. protected function answer3()
  46. {
  47. return 'c';
  48. }
  49. }
  50. // 学生乙抄的试卷
  51. // 学生甲抄的试卷
  52. class TestPaperB extends TestPaper
  53. {
  54. protected function answer1()
  55. {
  56. return 'd';
  57. }
  58. protected function answer2()
  59. {
  60. return 'c';
  61. }
  62. protected function answer3()
  63. {
  64. return 'a';
  65. }
  66. }
  67. // 客户端代码
  68. echo "学生甲抄的试卷: \n";
  69. $student = new TestPaperA();
  70. $student->TestQuestion1();
  71. $student->TestQuestion2();
  72. $student->TestQuestion3();
  73. echo "学生乙抄的试卷: \n";
  74. $student2 = new TestPaperB();
  75. $student2->TestQuestion1();
  76. $student2->TestQuestion2();
  77. $student2->TestQuestion3();

总结:

模版方法模式,定义一个操作中的算法的骨架,而将一些步骤延迟到子类中。模版方法使得子类可以不改变算法的节结构即可重定义该算法的某些特定步骤。

既然用了继承,并且肯定这个继承有意义,就应该要成为子类的模版,所有重复的代码都应该要上升到父类去,而不是让每个子类去重复。

当我们要完成在某一细节层次一致的一个过程或一系列步骤,但其中个别步骤在更详细的层次上的实现可能不同时,我们通常考虑用模版方法模式来处理。

模版方法模式是通过把不变行为搬移到超类,去除子类中的重复代码来体现它的优势。提供了一个很好的代码复用平台。

当不变的和可变的行为在方法的子类实现中混合在一起的时候,不变的行为就会在子类中重复出现。通过模版方法把这些行为搬移到单一的地方,这样就帮助子类摆脱重复的不变行为的纠缠。