php – 避免特质碰撞 – use_once?

栏目: PHP · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/36269607/avoiding-trait-collisions-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();
    }
}

但我一直在收到错误

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

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

您需要阅读: Conflict Resolution

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

insteadofoperator 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;
    }
}

翻译自:https://stackoverflow.com/questions/36269607/avoiding-trait-collisions-use-once


以上所述就是小编给大家介绍的《php – 避免特质碰撞 – use_once?》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Approximation Algorithms

Approximation Algorithms

Vijay V. Vazirani / Springer / 2001-07-02 / USD 54.95

'This book covers the dominant theoretical approaches to the approximate solution of hard combinatorial optimization and enumeration problems. It contains elegant combinatorial theory, useful and inte......一起来看看 《Approximation Algorithms》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

SHA 加密
SHA 加密

SHA 加密工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具