什麼是代理模式? (實例說明)

藏色散人
發布: 2023-04-05 20:52:01
轉載
4570 人瀏覽過

代理模式

代理模式的作用和繼承以及介面和組合的作用類似,都是為了聚合共用部分,減少公共部分的程式碼。

不同的是相比起繼承,他們的語境不同,繼承要表達的含義是is-a, 而代理要表達的含義更接近於接口, 是has-a,而且使用代理的話應了一句話"少用繼承,多用組合",要表達的意思其實也就是降低耦合度了。

對於組合來說,他比組合更具彈性,例如我們將代理物件設為private,那麼我可以選擇只提供一部分的代理功能,例如Printer的某一個或兩個方法,又或是在提供Printer的功能的時候加入一些其他的操作,這些都是可以的。

<?php
//代理对象,一台打印机
class Printer { 
    public function printSth() {
        echo &#39;我可以打印<br>&#39;;
    }
}
//这是一个文印处理店,只文印,卖纸,不照相
class TextShop {
    private $printer;
    public function __construct(Printer $printer) {
        $this->printer = $printer;
    }
    //卖纸
    public function sellPaper() {
        echo &#39;give you some paper <br>&#39;;
    }
    //将代理对象有的功能交给代理对象处理
    public function __call($method, $args) {
        if(method_exists($this->printer, $method)) {
            $this->printer->$method($args);
        }
    }
}
//这是一个照相店,只文印,拍照,不卖纸
class PhotoShop {    
    private $printer;
    
    public function __construct(Printer $printer) {
        $this->printer = $printer;
    }
    
    public function takePhotos() {    //照相
        echo &#39;take photos for you <br>&#39;;
    }
    
    public function __call($method, $args) {    //将代理对象有的功能交给代理对象处理
        if(method_exists($this->printer, $method)) {
            $this->printer->$method($args);
        }
    }
}
$printer = new Printer();
$textShop = new TextShop($printer);
$photoShop = new PhotoShop($printer);
$textShop->printSth();
$photoShop->printSth();
登入後複製

以上是什麼是代理模式? (實例說明)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:hcoder.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!