php常用的三種設計模式的學習筆記

WBOY
發布: 2016-07-25 09:05:46
原創
838 人瀏覽過
  1. class SingetonBasic {

  2. private static $instance;
  3. private function __construct() {

  4. // do construct..
  5. }
  6. private function __clone() {}

  7. public static function getInstance() {

  8. if (!(self::$instance instanceof self)) {
  9. self::$instance = new self();
  10. }
  11. return self::$instance;
  12. }
  13. // other functions..

  14. }
  15. $a = SingetonBasic ::getInstance();

  16. $b = SingetonBasic::getInstance();
  17. var_dump($a === $b);
複製代碼

二、工廠模式 工廠模式在於可以根據輸入參數或應用程式配置的不同來創建一種專門用來實現化並傳回其它類別的實例的類別。 工廠模式的例子:

  1. class FactoryBasic {

  2. public static function create($config) {
  3. }

  4. }
複製程式碼

例如這裡是一個描述形狀物件的工廠,它希望根據傳入的參數個數不同來創造不同的形狀。

  1. // 定義形狀的公共功能:取得周長和麵積。

  2. interface IShape {
  3. function getCircum();
  4. function getArea();
  5. }
  6. // 定義矩形類別

  7. class Rectangle implements🎜>

    // 定義矩形類別

  8. class Rectangle implements IShape {
  9. private $width, $height;
  10. public function __construct($width, $height) {

  11. $this->width = $width;
  12. $this->height = $height;
  13. }
  14. public function getCircum() {

  15. return 2 * ($this->width + $this->height);
  16. } p>
  17. public function getArea() {

  18. return $this->width * $this->height;
  19. }
  20. }
  21. //定義圓類

  22. class Circle implements IShape {
  23. private $radii;
  24. public function __construct($radii) {

  25. $this->radii = $radii;
  26. }
  27. public function getCircum() {

  28. return 2 * M_PI * $this->radii;
  29. }
  30. public function getArea( ) {

  31. return M_PI * pow($this->radii, 2);
  32. }
  33. }
  34. // 根據傳入的參數個數不同而建立不同的形狀。

  35. class FactoryShape {
  36. public static function create() {
  37. switch (func_num_args()) {
  38. case 1:
  39. return new Circle(func_get_arg(0)break;case 2:
  40. return new Rectangle(func_get_arg(0), func_get_arg(1));
  41. break;
  42. }

  43. }
  44. } p>
  45. // 矩形物件

  46. $c = FactoryShape::create(4, 2);
  47. var_dump($c->getArea());
  48. // 圓形物件
  49. $o = FactoryShape::create(2);
  50. var_dump($o->getArea());
複製代碼

使用工廠模式使得在呼叫方法時變得更容易,因為它只有一個類別和一個方法,若沒有使用工廠模式,則要在呼叫時決定應該呼叫哪個類別和哪個方法;使用工廠模式也使得未來對應用程式做改變時更加容易,例如要增加一種形狀的支持,只需要修改工廠類別中的create()一個方法,而沒有使用工廠模式,則要修改呼叫形狀的程式碼區塊。

三、觀察者模式 觀察者模式為您提供了避免組件之間緊密耦合的另一種方法。這個模式非常簡單:一個物件透過添加一個方法(該方法允許另一個對象,即觀察者註冊自己)使本身變得可觀察。當可觀察的物件變更時,它會將訊息傳送到已註冊的觀察者。這些觀察者使用該資訊執行的操作與可觀察的物件無關。結果是對象可以相互對話,而不必了解原因。

一個簡單的範例:當聽眾在收聽電台時(即電台加入一個新聽眾),它將發送出一條提示訊息,透過發送訊息的日誌觀察者可以觀察這些訊息。

  1. // 觀察者介面

  2. interface IObserver {
  3. function onListen($sender,ender, $args);
  4. function getName();
  5. }
  6. // 可被觀察介面

  7. interface IObservable {
  8. function addObserver($observer);function addObserver($observer);function addObserver($observer);function addObserver($observer);function removeObserver($observer_name);
  9. }
  10. // 觀察者類別

  11. abstract class Observer implements IObserver {
  12. protected $name;
  13. public function getName() {

  14. return $this->name;
  15. }
  16. }
  17. // 可被觀察類別

  18. class Observable implements IObservable {
  19. protected $observers = array();
  20. public function addObserver($observer) {

  21. if (!($observer instanceof IObserver)) {
  22. return;
  23. }
  24. $this->observers[] = $observer;
  25. }
  26. public function removeObserver($observer_name) {

  27. foreach ($this->observers as $index => $observer) {
  28. if ($observer->getName() === $observer_name) {
  29. array_splice($this->observers, $index, 1);
  30. return;
  31. }
  32. }
  33. }
  34. }
  35. // 模擬一個可以被觀察的類別:RadioStation

  36. class RadioStation extends Observable {
  37. public function addListener($listener) {

  38. foreach ($this->observers as $observer) {
  39. $observer->onListen($this, $listener);
  40. }
  41. }
  42. }
  43. // 模擬一個觀察者類別

  44. class RadioStationLogger extends Observer {
  45. protected $name = 'logger';
  46. public function onListen($sender, $args) {

  47. echo $args, ' join the radiostation.
    ';
  48. }
  49. }
  50. //模擬另外一個觀察者類別

  51. class OtherObserver extends Observer {
  52. protected $name = 'other';
  53. public function onListen($sender, $args) {
  54. echo 'other observer..
    ';
  55. }
  56. }
  57. $rs = new RadioStation();

  58. // 注入觀察者

  59. $rs ->addObserver(new RadioStationLogger());
  60. $rs->addObserver(new OtherObserver());
  61. // 移除觀察者

  62. $rs->removeObserver( 'other');
  63. // 可以看到觀察到的資訊

  64. $rs->addListener('cctv');
?>
複製程式碼


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板