php、java实现桥接模式

该模式主要目的在于解耦,将模块的粒度分隔的更细,便于需求的更改

类图
这里写图片描述

java实现

public interface Implementor {
    public void doSomething();

    public void doAnything();
}
public class RealImplementor implements Implementor {

    @Override
    public void doSomething() {

    }

    @Override
    public void doAnything() {

    }
}
public abstract class AbstractRole {

    protected Implementor implementor;

    public AbstractRole(Implementor implementor)
    {
        this.implementor = implementor;
    }

    public abstract void doSomething();

    public abstract void doAnything();
}
public class RealRole extends AbstractRole {

    public RealRole(Implementor implementor) {
        super(implementor);
    }

    @Override
    public void doSomething() {
        super.implementor.doSomething();
    }

    @Override
    public void doAnything() {
        super.implementor.doAnything();
    }
}

php实现

interface Implementor
{
    public function doSomething();

    public function doAnything();
}

class RealImplementor implements Implementor
{
    public function doSomething()
    {
        echo 'doSomething';
    }

    public function doAnything()
    {
        echo 'doAnything';
    }
}

abstract class AbstractRole
{
    protected $implementor;

    public function __construct(Implementor $implementor)
    {
        $this->implementor = $implementor;
    }

    public abstract function doSomething();

    public abstract function doAnything();

}

class RealRole extends AbstractRole
{
    public function __construct(Implementor $implementor)
    {
        parent::__construct($implementor);
    }

    public function doSomething()
    {
        $this->implementor->doSomething();
    }

    public function doAnything()
    {
        $this->implementor->doAnything();
    }
}

$realRole = new RealRole(new RealImplementor());
$realRole->doSomething();
$realRole->doAnything();
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值