本文實例講述了PHP物件導向程式設計高階特性。分享給大家供大家參考,如下:
靜態屬性
<?php class StaticExample { static public $aNum = 0; // 静态共有属性 static public function sayHello() { // 静态共有方法 print "hello"; } } print StaticExample::$aNum; StaticExample::sayHello(); ?>
輸出:0 hello
點評:靜態屬性與方法,可透過類別直接呼叫。
SELF
<?php class StaticExample { static public $aNum = 0; static public function sayHello() { // 这里的static 和 public的顺序可以颠倒 self::$aNum++; print "hello (".self::$aNum.")\n"; // self 指向当前类, $this指向当前对象。 } } StaticExample::sayHello(); StaticExample::sayHello(); StaticExample::sayHello(); ?>
輸出:
hello (1) hello (2) hello (3)
點評:self 指向當前類別, this指向當前物件。 self可以呼叫目前類別的靜態屬性和方法。 this指向當前物件。 self可以呼叫目前類別的靜態屬性和方法。 this可以呼叫目前類別的正常屬性和方法。
常數屬性
<?php interface Chargeable { // 接口,抽象类是介于基类与接口之间的东西 public function getPrice(); } class ShopProduct implements Chargeable { // ... protected $price; // ... public function getPrice() { return $this->price; } // ... } $product = new ShopProduct(); ?>
如果沒有實作getPrice方法,將會報錯。
Fatal error: Class ShopProduct contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Chargeable::getPrice)
繼承類接口先:
<?php class TimedService{ } interface Bookable{ } interface Chargeable{ } class Consultancy extends TimedService implements Bookable, Chargeable { // 继承类与接口 // ... } ?>
靜態方法
<?php abstract class DomainObject { } class User extends DomainObject { public static function create() { return new User(); } } class Document extends DomainObject { public static function create() { return new Document(); } } $document = Document::create(); print_r( $document ); ?>
輸出:
Document Object ( )
finalfinaldinaldinal看到的類型
輸出:Fatal error: Class IllegalCheckout may not inherit from final class (Checkout)final方法不能夠被重寫<?php abstract class DomainObject { private $group; // 私有属性group public function __construct() { $this->group = static::getGroup();//static 静态类 } public static function create() { return new static(); } static function getGroup() { // 静态方法 return "default"; } } class User extends DomainObject { } class Document extends DomainObject { static function getGroup() { // 改变了内容 return "document"; } } class SpreadSheet extends Document { // 继承之后,group也就与document相同了 } print_r(User::create()); print_r(SpreadSheet::create()); ?>
析
User Object ( [group:DomainObject:private] => default ) SpreadSheet Object ( [group:DomainObject:private] => document )
<?php final class Checkout { // 终止类的继承 // ... } class IllegalCheckout extends Checkout { // ... } $checkout = new Checkout(); ?>
再看一個例子
<?php class Checkout { final function totalize() { // calculate bill } } class IllegalCheckout extends Checkout { function totalize() { // 不能重写final方法 // change bill calculation } } $checkout = new Checkout(); ?>
點評:學習還是能夠開拓大腦的,今天終於明白為什麼有多支箭頭的概念了$person->account->balance。這裡的account屬性是一個物件。
__toString
<?php class Person { protected $name; private $age; private $id; function __construct( $name, $age ) { $this->name = $name; $this->age = $age; } function setId( $id ) { $this->id = $id; } function __destruct() { // 析构函数 if ( ! empty( $this->id ) ) { // save Person data print "saving person\n"; } if ( empty( $this->id ) ) { // save Person data print "do nothing\n"; } } } $person = new Person( "bob", 44 ); $person->setId( 343 ); $person->setId( '' ); // 最后执行析构函数,使用完之后执行 ?>
點評:必須是print或echo時才有效,print_r就輸出物件。
Person Object()
希望本文所述對大家PHP程式設計有幫助。
更多PHP物件導向程式設計高階特性詳解(介面,繼承,抽象類別,析構,克隆等)相關文章請關注PHP中文網!