php – 避免特质碰撞 – use_once?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 避免特质碰撞 – use_once?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个 PHP特征,每个特征都继承自相同的第三特征:
trait C {
    public function smallTalk() {
        echo 'c';
    }
}

traIT A {
    use C;
    public function ac() {
        echo 'a'.smallTalk();
    }
}

trait B {
    use C;
    public function bc() {
        echo 'b'.smallTalk();
    }
}

我想在课堂上使用它们:

class D {
    use A,B;
    public function acbc() {
        echo ac().bc();
    }
}

但我一直在收到错误

@H_301_9@

Fatal error: Trait method smallTalk has not been applied,because there are collisions with other trait methods on D

知道use_once不是一个东西,但我正在寻找require_onceinclude_once提供的相同功能,但是对于特征.这个例子很简单.我的真正的C有很多方法,并且被超过2个特征继承,所以我不想在每次使用超过1个这些特征时重复一长串的代替.

您需要阅读: Conflict Resolution @H_301_9@

If two traits insert a method with the same name,a Fatal error is
PRoduced,if the conflict is not explicitly resolved.

To resolve naming conflicts between Traits used in the same class,the
insteadof operator needs to be used to choose exactly one of the
conflicting methods.

Since this only allows one to exclude methods,the as oPErator can be
used to allow the inclusion of one of the conflicting methods under
another name.

例:

<?PHP
trait A {
    public function smallTalk() {
        echo 'a';
    }
    public function BigTalk() {
        echo 'A';
    }
}

trait B {
    public function smallTalk() {
        echo 'b';
    }
    public function bigTalk() {
        echo 'B';
    }
}

class Talker {
    use A,B {
        B::smallTalk insteadof A;
        A::bigTalk insteadof B;
    }
}

class Aliased_Talker {
    use A,B {
        B::smallTalk insteadof A;
        A::bigTalk insteadof B;
        B::bigTalk as talk;
    }
}

脚本宝典总结

以上是脚本宝典为你收集整理的php – 避免特质碰撞 – use_once?全部内容,希望文章能够帮你解决php – 避免特质碰撞 – use_once?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。