php面向对象编程self和static的区别

5年以前  |  阅读数:874 次  |  编程语言:PHP 

在php的面向对象编程中,总会遇到


    class test{
     public static function test(){
      self::func();

      static::func();
     }

     public static function func(){}
    }

可你知道self和static的区别么?

其实区别很简单,只需要写几个demo就能懂:

Demo for self:


    class Car
    {
     public static function model(){
      self::getModel();
     }

     protected static function getModel(){
      echo "This is a car model";
     }
    }

Car::model();


    Class Taxi extends Car
    {
     protected static function getModel(){
      echo "This is a Taxi model";
     }
    }

Taxi::model();
得到输出


    This is a car model
    This is a car model

可以发现,self在子类中还是会调用父类的方法

Demo for static


    class Car
    {
     public static function model(){
      static::getModel();
     }

     protected static function getModel(){
      echo "This is a car model";
     }
    }

    Car::model();

    Class Taxi extends Car
    {
     protected static function getModel(){
      echo "This is a Taxi model";
     }
    }

    Taxi::model();

得到输出


    This is a car model
    This is a Taxi model

可以看到,在调用static,子类哪怕调用的是父类的方法,但是父类方法中调用的方法还会是子类的方法(好绕嘴。。)

在PHP5.3版本以前,static和self还是有一点区别,具体是什么,毕竟都是7版本的天下了。就不去了解了。

总结呢就是:self只能引用当前类中的方法,而static关键字允许函数能够在运行时动态绑定类中的方法。

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例