php面向?qū)ο缶幊蘳elf和static的區(qū)別
來源:易賢網(wǎng) 閱讀:801 次 日期:2016-08-24 14:40:11
溫馨提示:易賢網(wǎng)小編為您整理了“php面向?qū)ο缶幊蘳elf和static的區(qū)別”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了PHP中static關(guān)鍵字以及與self關(guān)鍵字的區(qū)別,本文講解了static關(guān)鍵字的定義、遲綁定(Late Static Bindings)、以及與self關(guān)鍵字的區(qū)別等內(nèi)容,需要的朋友可以參考下

在php的面向?qū)ο缶幊讨?,總會遇?/P>

class test{

 public static function test(){

  self::func();

  static::func();

 }

 public static function func(){}

}

可你知道self和static的區(qū)別么?

其實區(qū)別很簡單,只需要寫幾個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

可以發(fā)現(xiàn),self在子類中還是會調(diào)用父類的方法

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

可以看到,在調(diào)用static,子類哪怕調(diào)用的是父類的方法,但是父類方法中調(diào)用的方法還會是子類的方法(好繞嘴。。)

在PHP5.3版本以前,static和self還是有一點區(qū)別,具體是什么,畢竟都是7版本的天下了。就不去了解了。

總結(jié)呢就是:self只能引用當(dāng)前類中的方法,而static關(guān)鍵字允許函數(shù)能夠在運行時動態(tài)綁定類中的方法。

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:php面向?qū)ο缶幊蘳elf和static的區(qū)別

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)