码迷,mamicode.com
首页 > 其他好文 > 详细

Trait讲解

时间:2018-12-28 23:41:07      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:name   div   his   结构   class   常量   extends   get   this   

<?php

/**
 * Trait解决PHP单继承的一种方法,使开发人员在不同层次结构的类中复用属性和方法
 * Trait无法实例化
 * Trait不是类,不能被继承,所以不能再Trait中不能声明抽象方法
 * Trait中无法声明常量
 * ThinkPHP中Trait有应用
 */

    //声明一个Trait
    trait Name
    {
        public function getName()
        {
            return ‘张三‘;
        }
    }

    //声明一个Trait
    trait Say
    {
        public function say() {
            return ‘world‘;
        }
    }

    //声明一个类
    class Lang
    {
        //导入Trait(导入多个Trait用,分隔)
        use Name,Say;

        public function sayPhp()
        {
            return ‘php‘;
        }
    }

   class Chinese extends Lang
   {
       public function show()
       {
           return $this->getName().‘会说‘.$this->say().‘,还会说‘.$this->sayPhp();
        }
   }

   $ch = new Chinese();
    echo $ch->show();
    

  

Trait讲解

标签:name   div   his   结构   class   常量   extends   get   this   

原文地址:https://www.cnblogs.com/fantianlong/p/10193255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!