php – 如何在课堂上多次使用特质?

前端之家收集整理的这篇文章主要介绍了php – 如何在课堂上多次使用特质?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下代码
trait T {
    function foo() {}
}

class C {
    use T { T::foo as bar; }
    use T { T::foo as baz; }
}

产生以下错误

Trait method bar has not been applied,because there are collisions
with other trait methods on C

是否可以在课堂上使用两次特质?

要使用不同的名称多次“导入”特征中定义的方法,请执行以下操作:
class C {
  use T {
    foo as bar;
    foo as baz;
  }
}
原文链接:https://www.f2er.com/php/134268.html

猜你在找的PHP相关文章