时间:2021-07-01 10:21:17 帮助过:24人阅读
代码:通过委托模式,改进后的cd类
[php] view plaincopyprint?
//委托模式-去除核心对象中的判决和复杂的功能性
//改进cd类
class cdDelegate {
protected $cdInfo = array();
public function addSong($song) {
$this->cdInfo[$song] = $song;
}
public function play($type, $song) {
$obj = new $type;
return $obj->playList($this->cdInfo, $song);
}
}
class mp3 {
public function playList($list) {
return $list[$song];
}
}
class mp4 {
public function playList($list) {
return $list[$song];
}
}
$newCd = new cd;
$newCd->addSong("1");
$newCd->addSong("2");
$newCd->addSong("3");
$type = 'mp3';
$oldCd->play('mp3', '1'); //只要传递参数就能知道需要选择何种播放模式
作者:initphp
http://www.bkjia.com/PHPjc/478145.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478145.htmlTechArticle委托模式 通过分配或委托其他对象,委托设计模式能够去除核心对象中的判决和复杂的功能性。 应用场景 设计了一个cd类,类中有mp3播放...