中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何理解Constructor Prototype Pattern原型模式

發布時間:2021-09-28 17:31:07 來源:億速云 閱讀:129 作者:iii 欄目:開發技術

本篇內容主要講解“如何理解Constructor Prototype Pattern原型模式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何理解Constructor Prototype Pattern原型模式”吧!

原型模式中主要角色

抽象原型(Prototype)角色:聲明一個克隆自己的接口
具體原型(Concrete Prototype)角色:實現一個克隆自己的操作

當一個類大部分都是相同的只有部分是不同的時候,如果需要大量這個類的對象,每次都重復實例化那些相同的部分是開銷很大的,而如果clone之前建立對象的那些相同的部分,就可以節約開銷。

針對php的一種實現方式就是__construct()和initialize函數分開分別處理這個類的初始化,construct里面放prototype也就是公共的部分,initialize里面是每個對象特殊的部分。這樣我們先建立一個類不initialize,以后每次clone這個類再進行initialize就可以了。

一、引入

  在zf2的model里面有一個albumTable類,相當于一個操作數據庫動作的助手類,里面用到了tablegateway。

  為了每次初始化albumtable都是相同的一個類,將初始化工作放到了根目錄的module.php文件的getServiceConfig(),其中用到工廠模式,并且通過回調函數,當每次ServiceManager($sm)需要實例化一個對象的時候會自動調用創建一個alumTable。下面代碼我們可以看出,創建一個albumTable還需要用相同的方式創建一個AlbumTableGateWay,這個類就用到了我們所要講的原型模式。

二、代碼詳解

public function getServiceConfig()
  {
    return array(
      'factories' => array(
        'Album\Model\AlbumTable' => function($sm) {
          $tableGateway = $sm->get('AlbumTableGateway');
          $table = new AlbumTable($tableGateway);
          return $table;
        },
        'AlbumTableGateway' => function ($sm) {
          $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
          $resultSetPrototype = new ResultSet();
          $resultSetPrototype->setArrayObjectPrototype(new Album());//這個就是一個不變的原型
          return new TableGateway('album', $dbAdapter, null, $resultSetPrototype);//傳入到TableGateWay的構造函數中去
        },
      ),
    );
  }

注意并不是TableGateWay運用了原型模式而是ResultSet這個類運用了。每當tablegateway調用select()或者insert()等方法的時候都會建立一個ResultSet用來表示結果,這些ResultSet中公共部分被clone,而獨特的部分類如data就會被initialize。

三、更多代碼示例

  為了更清晰得了解這個原型,我們先拋開zend這個大框架,看一個完整的代碼示例。示例來自

<a href="http://ralphschindler.com/2012/03/09/php-constructor-best-practices-and-the-prototype-pattern">PHP Constructor Best Practices And The Prototype Pattern</a>

這篇文章關于prototype pattern的部分前半部分其實是混雜怎樣在構造函數中運用繼承來提高擴展性,兩個模式看起來可能不太好理解,我們直接看最后的代碼關于prototype pattern的部分。

<?php
//框架中很常見的adapter類,用來適配各種數據庫,封裝一些基本數據庫連接操作。
//相當于上面代碼中的adapter類
class DbAdapter {
  public function fetchAllFromTable($table) {
    return $arrayOfData;
  }
}
//運用prototype pattern的類,注意construct和initialize是分開的
//相當于上面zend 代碼里面的ResultSet類
class RowGateway {
  public function __construct(DbAdapter $dbAdapter, $tableName) {
    $this->dbAdapter = $dbAdapter;
    $this->tableName = $tableName;
  }
  public function initialize($data) {
    $this->data = $data;
  }
  /**
   * Both methods require access to the database adapter
   * to fulfill their duties
   */
  public function save() {}
  public function delete() {}
  public function refresh() {}
}
//相當于上面代碼中的TableGateway類,關于gateway可以具體去了解一下。
class UserRepository {
  public function __construct(DbAdapter $dbAdapter, RowGateway $rowGatewayPrototype = null) {
    $this->dbAdapter = $dbAdapter;
    $this->rowGatewayPrototype = ($rowGatewayPrototype) ? new RowGateway($this->dbAdapter, 'user')
  }
  public function getUsers() {
    $rows = array();
    foreach ($this->dbAdapter->fetchAllFromTable('user') as $rowData) {
      $rows[] = $row = clone $this->rowGatewayPrototype;
      $row->initialize($rowData);
    }
    return $rows;
  }
}

這幾個類其實和上面zend代碼中的類是對應的

Dbadapter -- adpater

RowGateWay -- ResultSet

UserRepository - TableGateWay

具體看代碼中的注釋。

這里的RowGateWay可以很明顯的看出在getusers中需要大量的實例化,那么原型模式就是很必要的了。

下面是運用這個類的代碼

class ReadWriteRowGateway extends RowGateway {
  public function __construct(DbAdapter $readDbAdapter, DbAdapter $writeDbAdapter, $tableName) {
    $this->readDbAdapter = $readDbAdapter;
    parent::__construct($writeDbAdapter, $tableName);
  }
  public function refresh() {
    // utilize $this->readDbAdapter instead of $this->dbAdapter in RowGateway base implementation
  }
}
// usage:
$userRepository = new UserRepository(
  $dbAdapter,
  new ReadWriteRowGateway($readDbAdapter, $writeDbAdapter, 'user')
);
$users = $userRepository->getUsers();
$user = $users[0]; // instance of ReadWriteRowGateway with a specific row of data from the db

到此,相信大家對“如何理解Constructor Prototype Pattern原型模式”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

澄城县| 容城县| 静安区| 丰原市| 西青区| 乌兰县| 韶山市| 嵊泗县| 甘肃省| 九龙县| 吉安县| 宁陕县| 苏州市| 上林县| 科尔| 茌平县| 望城县| 同仁县| 松溪县| 宜君县| 达日县| 民丰县| 涞水县| 视频| 麟游县| 高清| 西宁市| 汉中市| 铜山县| 襄垣县| 综艺| 罗甸县| 伊川县| 上犹县| 锡林浩特市| 秭归县| 邹城市| 肇东市| 波密县| 长乐市| 旬阳县|