中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中new static()與new self()有什么區別

發布時間:2021-09-01 13:55:12 來源:億速云 閱讀:210 作者:小新 欄目:開發技術

這篇文章主要介紹了PHP中new static()與new self()有什么區別,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

在coding的時候,發現了 new static(),覺得實例化的地方不是應該是 new self()嗎?查詢了一下才知道兩者的區別:

  1)在有子類集成的時候,兩者的表現不一樣

  2)php 5.2及以下的版本不支持 new static()的語法

簡單通俗的來說, self就是寫在哪個類里面, 實際調用的就是這個類.所謂的后期靜態綁定, static代表使用的這個類, 就是你在父類里寫的static,

然后通過子類直接/間接用到了這個static, 這個static指的就是這個子類, 所以說static和$this很像, 但是static可以用于靜態方法和屬性等.

具體解釋如下:

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

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

還是看看老外的專業解釋吧:

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() ).

上代碼:

class Person {
public static function get_self() {
return new self();
}
public static function get_static() {
return new static();
}
}
class WangBaoqiang extends Person{}
echo get_class(WangBaoqiang::get_self()); // Person
echo get_class(WangBaoqiang::get_static()); // WangBaoqiang
echo get_class(Person::get_static()); // Person

但是如果想讓 子類使用 get_class時,返回的也是 當前子類的名稱('wangbaoqiang'),該怎么做呢。

<?php
class Person {
public function create1() {
$class = get_class($this);
    return new $class();
}
public function create2() {
return new static();
}
}
class WangBaoqiang extends Person {
}
$wangBaoQiang = new WangBaoqiang();
var_dump(get_class($wangBaoQiang->create1()), get_class($wangBaoQiang->create2()));
/*
The result 
string(1) "WangBaoqiang"
string(1) "WangBaoqiang"
*/

感謝你能夠認真閱讀完這篇文章,希望小編分享的“PHP中new static()與new self()有什么區別”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

南涧| 班玛县| 永安市| 汪清县| 涡阳县| 泗洪县| 华阴市| 西安市| 镇平县| 库伦旗| 锦屏县| 浦东新区| 沙田区| 阳信县| 江川县| 徐州市| 莆田市| 西昌市| 灯塔市| 怀远县| 大埔县| 株洲县| 邵东县| 长顺县| 乌兰浩特市| 寿光市| 贺州市| 扶绥县| 海盐县| 衢州市| 科技| 伊金霍洛旗| 平江县| 休宁县| 娄烦县| 石屏县| 公主岭市| 依安县| 米泉市| 莱西市| 三都|