zoukankan      html  css  js  c++  java
  • #PHP 类的多继承实现之 traits.md

    TRAIT

    PHP本身是并不支持多继承的,也就是,一个类只能继承一个类,为了满足业务需求,后来有了一些解决方法,例如,链式继承,B继承A,然后C继承B,这样,C就同时继承了AB, 此外还有接口,因为接口其实和抽象类很像,同一个类可以实现多个接口,利用接口的此特性,我们也能实现多继承。

    但是,自 PHP 5.4.0 起,PHP 实现了代码复用的一个方法,称为 Traits,它能够帮我们更加便捷的实现类的多继承。

    实例1

    <?php
    trait A{
    	public function testA(){
    		echo "<br>";
    		echo "testA call";
    	}
    }
    trait B{
    	public function testB(){
    		echo "<br>";		
    		echo "testB call";
    	}
    }
    trait C{
    	public function testC(){
    		echo "<br>";		
    		echo "testC call";
    	}
    }
    class D{
    	use A,B,C;
    }
    
    $cls = new D();
    $cls->testA();
    $cls->testB();
    $cls->testC();
    ?>
    
    #输出
    
    testA call
    testB call
    testC call
    

    实例2

    <?php
    class E{
    	public function testE(){
    		echo "<br>";
    		echo "testE call";
    	}
    }
    trait F{
    	public function testF(){
    		echo "<br>";
    		echo "testF call";
    	}	
    }
    class G extends E{
    	use F;
    }
    $cls = new G();
    $cls->testE();
    $cls->testF();
    ?>
    
    #输出
    
    testE call
    testF call
    

    实例3

    <?php
    class Base {
        public function sayHello() {
            echo 'Hello ';
        }
    }
     
    trait SayWorld {
        public function sayHello() {
            parent::sayHello();
            echo 'World!';
        }
    }
     
    class MyHelloWorld extends Base {
        use SayWorld;
    }
     
    $o = new MyHelloWorld();
    $o->sayHello();
    ?>
    

    以上例程会输出:

    Hello World!
    

     trait 有一个魔术常量,__TRAIT__,用于在相应trait中打印当前trait的名称。

  • 相关阅读:
    linux 中字符映射错误,#、、|、“ 不能输入
    Qt::Key_Return Qt::Key_Enter 区别
    如何监控系统用户实时执行的Linux命令
    a3考卷转2张a4
    kali
    字典序最小问题(贪心)
    nmap 目标指定
    debian 系统安装最新版本nmap方法:
    TransCAD是由美国Caliper公司开发的一套强有力的交通规划和需求预测软件
    GIS 地图的图层(切片/瓦片)概念
  • 原文地址:https://www.cnblogs.com/jaycethanks/p/13175091.html
Copyright © 2011-2022 走看看