继承static的注意点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了继承static的注意点相关的知识,希望对你有一定的参考价值。

继承static的注意点

singleton模式会使用

<?php
class Auth
{
    protected static $_instance = null;

    /**
     * 单用例入口
     *
     * @return Auth
     */
    public static function getInstance()
    {
        if (! self::$_instance) {
            self::$_instance = new self ();
        }
        return self::$_instance;
    }
}


class AuthV2 extends Auth
{

    // 使用父类的
    // protected static $_instance = null;

    /**
     * 单用例入口
     *
     * @return AuthV2
     */
    public static function getInstance()
    {
        if (! self::$_instance) {
            self::$_instance = new self ();
        }
        return self::$_instance;
    }

    public function checkLogin(){
        return false;
    }
}

Auth::getInstance();
AuthV2::getInstance()->checkLogin();

结果

上面的结果看上去感觉没有问题,但是...

// 出现如下错误
Fatal error: Call to undefined method Auth::checkLogin()

分析

  • 提示说使用的类竟然是Auth,而不是AuthV2,为什么?先看流程
  1. Auth::getInstance(); 给 Auth的$_instance赋值了。
  2. AuthV2::getInstance();返回的对象是直接使用父级Auth的$_instance,因此,没有再次执行new self()进行实例化。
  • 如果让Auth::getInstance() 再次实例化?
  1. AuthV2需要使用自己的 protected static $_instance = null;

正确代码:

<?php
class Auth
{
    protected static $_instance = null;

    /**
     * 单用例入口
     *
     * @return Auth
     */
    public static function getInstance()
    {
        if (! self::$_instance) {
            self::$_instance = new self ();
        }
        return self::$_instance;
    }
}


class AuthV2 extends Auth
{

    // 必须使用自身的
    protected static $_instance = null;

    /**
     * 单用例入口
     *
     * @return AuthV2
     */
    public static function getInstance()
    {
        if (! self::$_instance) {
            self::$_instance = new self ();
        }
        return self::$_instance;
    }

    public function checkLogin(){
        return false;
    }
}

Auth::getInstance();
AuthV2::getInstance()->checkLogin();

以上是关于继承static的注意点的主要内容,如果未能解决你的问题,请参考以下文章

static 继承

单继承&多继承 注意点

Java static 关键字

c++中 static 变量和函数能否被子类继承

继承的初始化过程

final关键字,static关键字