長夜漫漫啊!
今天領導本地搭建一個站。發現用PHP 5.2 搭建不起來,站PHP代碼裡面有很多5.3以上的部分,領導讓苦逼我更改在5.2下能運行。
改著改著發現了一個地方
return new static($val);
這尼瑪是神馬,只見過
return new self($val);
於是上網查了下,他們兩個的區別。
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 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); 如下
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" */
東西多了點。呵呵。幫你詳細說一下。
1. new和new[]的區別
new 用於單個對象或實例的創建,就是調用類的構造函數。
new [] 用於創建對象或實例的數組實例,並且地址是連續的。(內存分配的時候有可能不連續,但地址鏈表是連續的。)
2. 虛函數(這個沒辦法說,只能舉例子)
class person
{
public :
virtual say();
}
class techer : public person
{
public :
protected override say();
}
class student : public person
{
public :
protected override say();
}
第三個沒理解什麼意思。
前面兩個不知道你看懂沒有。沒有的話聯系我。
在java中
public static void main(String args[])這句話是一個主方法,
java程序可以有多個方法,但是主方法只能有一個,
用ststic修飾的方法稱為類方法(main也是類方法)。
A a=new A()是創建一個實例對象 static 起的是修飾作用