PHP没有多继续的特性。纵然是一门支持多继续的编程措辞,我们也很少会利用这个特性。在大多数人看来,多继续不是一种好的设计方法。
但是开拓中用到多继续该怎么办呢?
下面先容一下利用\公众trait\"大众来实现php中多继续的问题。
自PHP5.4开始,php实现了代码复用的方法\公众trait\"大众语法。
Trait是为PHP的单继续措辞而准备的一种代码复用机制。为了减少单继续的限定,是开拓在不同构造层次上去复用method,
Trait 和 Class 组合的语义定义了一种减少繁芜性的办法,避免传统多继续和 Mixin 类干系范例问题。
须要把稳的是,从基类继续的成员会被 trait 插入的成员所覆盖。优先顺序是来自当前类的成员覆盖了 trait 的方法,而 trait 则覆盖了被继续的方法。
先来个例子:
trait TestOne{
public function test()
{
echo \"大众This is trait one <br/>\"大众;
}
}
trait TestTwo{
public function test()
{
echo \公众This is trait two <br/>\公众;
}
public function testTwoDemo()
{
echo \公众This is trait two_1\"大众;
}
}
class BasicTest{
public function test(){
echo \"大众hello world\n\"大众;
}
}
class MyCode extends BasicTest{
//如果纯挚的直接引入,两个类中涌现相同的方法php会报出错
//Trait method test has not been applied, because there are collisions with other trait
//methods on MyCode
//use TestOne,TestTwo;
//怎么处理上面所涌现的缺点呢,我们只需利用insteadof关键字来办理方法的冲突
use TestOne,TestTwo{
TestTwo::test insteadof TestOne;
}
}
$test = new MyCode();
$test->test();
$test->testTwoDemo();
运行结果:
This is trait two
This is trait two_1
以上便是PHP实现多继续的trait语法的先容(代码示例)的详细内容,更多请关注其它干系文章!
更多技巧请《转发 + 关注》哦!