(五)物件導向的設計原則1---總綱及單一職責原則

來源:互聯網
上載者:User
一.總綱:

1.物件導向的五大原則:單一職責原則、介面隔離原則、開放-封閉原則、替換原則、依賴倒置原則。

二.單一職責原則:

1. 就一個類而言只有一個引起它變化的原因即為:單一職責原則。

2. 單一職責有兩個含義:

a. 避免相同的職責分散到不同的類

b. 避免一個類承擔太多的職責

3. 遵循單一職責原則的原因:減少類之間的耦合,提高類的複用性。

三.原廠模式:

1. 原廠模式允許在代碼執行時執行個體化對象。能夠‘生產’對象。

2. 樣本:

_dbLink =            @mysql_connect($config->host.(empty($config->port) ? '' : ':'.$config->port),                $config->user,$config->password,true)){            if (@mysql_select_db($config->database,$this->_dbLink)){                if ( $config->charset){                    mysql_query("SET NAMES '{$config->charset}'",$this->_dbLink);                }                return $this->_dbLink;            }        }        /*資料庫異常*/        throw new Db_Exception(@mysql_error($this->_dbLink)); //這一句報了很多錯    }    /*     * 執行資料庫查詢     *     * @param string $query 資料庫查詢sql字串     * @param mixed $handle 連線物件     * @return resource     */    public function query($query,$handle){        $resource = "";        if ($resource == @mysql_query($query,$handle)){            return $resource;        }    }}class Db_Adapter_sqlite implements  Db_Adapter{    private $_dbLink; //資料庫連接欄位標記    /*     * 資料庫連接函數     *     * @param $config資料庫配置     * @throws DB_exception     * @return resource     */    public function connect($config){        if ($this->_dbLink = @mysql_connect($config->host.            (empty($config->port) ? '' : ':'.$config->port),            $config->user,$config->password,true)){            if (@mysql_select_db($config->database,                $this->_dbLink)){                if ($config->charset){                    mysql_query("SET NAMES '{$config->charset}'",$this->_dbLink);                }                return $this->_dbLink;            }        }        /*資料庫異常*/        throw new Db_exception(@mysql_error($this->dbLink));    }    /*     * 執行資料庫查詢     *     * @param string $query 資料庫查詢sql字串     * @param mixed $handle 連線物件     * @return resource     */    public function query($query,$handle){        $resource = "";        if ($resource == @mysql_query($query,$handle)){            return $resource;        }    }}$testDb = new Db_Adapter_Mysql();$config = array(    //這裡寫資料庫配置    'host'=>'localhost',);$testDb->connect($config);$testDb->query($sql,$handle);

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

以上就介紹了(五)物件導向的設計原則1---總綱及單一職責原則,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.