php – static :: staticFunctionName()

前端之家收集整理的这篇文章主要介绍了php – static :: staticFunctionName()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道什么是self :: staticFunctionName()和parent :: staticFunctionName(),以及它们是如何彼此不同的以及从$this-> functionName.

但是什么是static :: staticFunctionName()?

这是 PHP 5.3中使用的关键字来调用更晚的静态绑定.
请阅读手册: http://php.net/manual/en/language.oop5.late-static-bindings.php

总而言之,static :: foo()的工作原理就像一个动态的self :: foo().

class A {
    static function foo() {
        // This will be executed.
    }
    static function bar() {
        self::foo();
    }
}

class B extends A {
    static function foo() {
        // This will not be executed.
        // The above self::foo() refers to A::foo().
    }
}

B::bar();

静态解决这个问题:

class A {
    static function foo() {
        // This is overridden in the child class.
    }
    static function bar() {
        static::foo();
    }
}

class B extends A {
    static function foo() {
        // This will be executed.
        // static::foo() is bound late.
    }
}

B::bar();

静态作为这个行为的关键字是有点混乱,因为它是全部. 原文链接:https://www.f2er.com/php/130388.html

猜你在找的PHP相关文章