时间:2021-07-01 10:21:17 帮助过:3人阅读
为了提高代码的复用性,降低代码的耦合(组合实现的两种方式)
模式一:
1 php 2 //组合模式一 3 class Person{ 4 public function eat(){ 5 echo "eat.
"; 6 } 7 } 8 9 class Phone{ 10 public function call(){ 11 echo "phone call.
"; 12 } 13 } 14 15 //学生也需要call()这个方法,为了提高代码的复用性(组合) 16 class Student extends Person{ 17 private $people; 18 public function learning(){ 19 echo "learn.
"; 20 } 21 public function func($class, $method){//兼容多个类的多个方法 22 $this->people = new $class; 23 $this->people->$method(); 24 } 25 } 26 27 $student = new Student(); 28 $student->eat(); 29 $student->func('Phone', 'call'); 30 $student->learning();
模式二:
1 php 2 //组合模式二 3 class Person{ 4 public function eat(){ 5 echo "eat.
http://www.bkjia.com/PHPjc/1125075.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1125075.htmlTechArticlephp组合,php排列组合算法 为了提高代码的复用性,降低代码的耦合(组合实现的两种方式) 模式一: 1 ? php 2 // 组合模式一 3 class Person{...