我正在阅读一本 php 书,并找到了以下代码:
class Employee {
static public $NextID = 1;
public $ID;
public function _ _construct( ) {
$this->ID = self::$NextID++;
}
public function NextID( ) {
return self::$NextID;
}
}
为什么这里使用self::$NextID++;
我可以这样使用:
$this-ID = $this->$NextID++;