程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php組合,php排列組合算法

php組合,php排列組合算法

編輯:關於PHP編程

php組合,php排列組合算法


為了提高代碼的復用性,降低代碼的耦合(組合實現的兩種方式)

模式一:

 1 <?php
 2 //組合模式一
 3 class Person{
 4     public function eat(){
 5         echo "eat.<br/>";
 6     }
 7 }
 8 
 9 class Phone{
10     public function call(){
11         echo "phone call.<br/>";
12     }
13 }
14 
15 //學生也需要call()這個方法,為了提高代碼的復用性(組合)
16 class Student extends Person{
17     private $people;
18     public function learning(){
19         echo "learn.<br/>";
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.<br/>"; 6 } 7 } 8 9 trait Drive{ 10 public function call(){ 11 echo "phone call.<br/>"; 12 } 13 } 14 15 class Student extends Person{ 16 use Drive; 17 public function learning(){ 18 echo "learn.<br/>"; 19 } 20 } 21 22 $student = new Student(); 23 $student->eat(); 24 25 //當方法或屬性同名時,當前類中的方法會覆蓋 trait的 方法,而 trait 的方法又覆蓋了基類中的方法 26 $student->call(); 27 $student->learning(); View Code

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved