最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

PHP中new static() 和 new self() 的區(qū)別介紹

 更新時間:2015年01月09日 10:21:15   投稿:junjie  
這篇文章主要介紹了PHP中new static() 和 new self() 的區(qū)別介紹,需要的朋友可以參考下

長夜漫漫??!

今天領(lǐng)導(dǎo)本地搭建一個站。發(fā)現(xiàn)用PHP 5.2 搭建不起來,站PHP代碼里面有很多5.3以上的部分,領(lǐng)導(dǎo)讓苦逼我更改在5.2下能運行。

改著改著發(fā)現(xiàn)了一個地方

復(fù)制代碼 代碼如下:

return new static($val);

這尼瑪是神馬,只見過
復(fù)制代碼 代碼如下:

return new self($val);

于是上網(wǎng)查了下,他們兩個的區(qū)別。

self – 就是這個類,是代碼段里面的這個類。

static – PHP 5.3加進來的只得是當(dāng)前這個類,有點像$this的意思,從堆內(nèi)存中提取出來,訪問的是當(dāng)前實例化的那個類,那么 static 代表的就是那個類。

還是看看老外的專業(yè)解釋吧。

self refers to the same class whose method the new operation takes place in.

static in PHP 5.3's late static bindings refers to whatever class in the hierarchy which you call the method on.

In the following example, B inherits both methods from A. self is bound to A because it's defined in A‘s implementation of the first method, whereas static is bound to the called class (also see  get_called_class() ).

復(fù)制代碼 代碼如下:

class A {
    public static function get_self() {
        return new self();
    }

    public static function get_static() {
        return new static();
    }
}

class B extends A {}

echo get_class(B::get_self());  // A
echo get_class(B::get_static()); // B
echo get_class(A::get_static()); // A


這個例子基本上一看就懂了吧。

原理了解了,但是問題還沒有解決,如何解決掉 return new static($val); 這個問題呢?

其實也簡單就是用 get_class($this); 如下

復(fù)制代碼 代碼如下:

class A {
    public function create1() {
        $class = get_class($this);
    return new $class();
    }
    public function create2() {
        return new static();
    }
}

class B extends A {

}

$b = new B();
var_dump(get_class($b->create1()), get_class($b->create2()));

/*
The result
string(1) "B"
string(1) "B"
*/

相關(guān)文章

最新評論

南汇区| 阿合奇县| 九江县| 新郑市| 长寿区| 延长县| 道孚县| 宜昌市| 文登市| 古交市| 科尔| 蒙阴县| 河南省| 呼和浩特市| 建湖县| 太原市| 海口市| 呼玛县| 新乐市| 高安市| 彰武县| 芒康县| 华坪县| 柯坪县| 乌拉特后旗| 马山县| 六盘水市| 建瓯市| 泾阳县| 黄陵县| 马公市| 将乐县| 广水市| 内乡县| 武冈市| 邹城市| 平凉市| 乌恰县| 甘谷县| 松滋市| 大同市|