PHP设计模式之桥接模式
桥接模式属于结构型模式,何为结构型模式,即结构型设计模式是从程序的结构上解决模块之间的耦合问题(低耦合)
概述:将抽象部分与它的实现部分分离,使他们都可以独立的变化
桥接模式:
将抽象部分与它的实现部分分离,使他们都可以独立的变
抽象与它的实现分离,即抽象类和它的派生类用来实现自己的对象
桥接与适配器模式的关系(适配器模式后面讲解)
桥接属于聚合关系,两者关联 但不继承
适配器属于组合关系,适配者需要继承源
聚合关系:A对象可以包含B对象 但B对象不是A对象的一部分
个人举例:
1 大雁和雁群
2 手机软件和手机品牌功能
组成关系:
鸟和翅膀的关系
namespace haibao\design\web\view\design;
use haibao\design\web\common\design\bridge\PhoneBrandNokia;
use haibao\design\web\common\design\bridge\PhoneBrandApple;
use haibao\design\web\common\design\bridge\PhoneGame;
use haibao\design\web\common\design\bridge\PhoneList;
class Bridge extends \haibao\design\web\view\Base{
protected function preRender(){
header("Content-type: text/html; charset=utf-8");
$nokia = new PhoneBrandNokia();
$nokia->setPhoneSoft(new PhoneGame('诺基亚'));
$nokia->run();
echo '
';
$nokia->setPhoneSoft(new PhoneList('诺基亚'));
$nokia->run();
echo '
';
$apple = new PhoneBrandApple();
$apple->setPhoneSoft(new PhoneGame('苹果'));
$apple->run();
echo '
';
$apple->setPhoneSoft(new PhoneList('苹果'));
$apple->run();
echo '
';
}
}
/**
* 手机品牌
*/
namespace haibao\design\web\common\design\bridge;
abstract class PhoneBrand{
public $phoneSoft;
public function setPhoneSoft($phoneSoft){
$this->phoneSoft = $phoneSoft;
}
public function run(){}
}
/**
* 苹果
*/
namespace haibao\design\web\common\design\bridge;
class PhoneBrandApple extends PhoneBrand{
public function run(){
$this->phoneSoft->run();
}
}
/**
* 诺基亚
*/
namespace haibao\design\web\common\design\bridge;
class PhoneBrandNokia extends PhoneBrand{
public function run(){
$this->phoneSoft->run();
}
}
/**
* 手机游戏
*/
namespace haibao\design\web\common\design\bridge;
class PhoneGame extends PhoneSoft{
public $name;
public function __construct($name){
$this->name = $name;
}
public function run(){
echo '运行'.$this->name.'平台手机游戏';
}
}
/**
* 手机通讯录
*/
namespace haibao\design\web\common\design\bridge;
class PhoneList extends PhoneSoft{
public $name;
public function __construct($name){
$this->name = $name;
}
public function run(){
echo '运行'.$this->name.'手机通讯录';
}
}
/**
* 手机软件
*/
namespace haibao\design\web\common\design\bridge;
abstract class PhoneSoft{
public function run(){}
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building
