PHP面向对象程序设计高级特性详解(接口,继承,抽象类,析构,克隆等)
本文实例讲述了PHP面向对象程序设计高级特性。分享给大家供大家参考,具体如下:
静态属性
<?php classStaticExample{ staticpublic$aNum=0;//静态共有属性 staticpublicfunctionsayHello(){//静态共有方法 print"hello"; } } printStaticExample::$aNum; StaticExample::sayHello(); ?>
输出:0 hello
点评:静态属性和方法,可以通过类直接调用。
SELF
<?php classStaticExample{ staticpublic$aNum=0; staticpublicfunctionsayHello(){//这里的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 classShopProduct{ constAVAILABLE=0;//只能用大写字母命名常量 constOUT_OF_STOCK=1; public$status; } printShopProduct::AVAILABLE; ?>
输出:0
点评:常量只能用大写字母,并且可以通过类直接调用。
接口
<?php interfaceChargeable{//接口,抽象类是介于基类与接口之间的东西 publicfunctiongetPrice(); } classShopProductimplementsChargeable{ //... protected$price; //... publicfunctiongetPrice(){ return$this->price; } //... } $product=newShopProduct(); ?>
如果没有实现getPrice方法,将会报错。
Fatalerror:ClassShopProductcontains1abstractmethodandmustthereforebedeclaredabstractorimplementtheremainingmethods(Chargeable::getPrice)
继承类与接口
<?php classTimedService{} interfaceBookable{} interfaceChargeable{} classConsultancyextendsTimedServiceimplementsBookable,Chargeable{//继承类与接口 //... } ?>
抽象类
先来看一段代码
<?php abstractclassDomainObject{ } classUserextendsDomainObject{ publicstaticfunctioncreate(){ returnnewUser(); } } classDocumentextendsDomainObject{ publicstaticfunctioncreate(){ returnnewDocument(); } } $document=Document::create(); print_r($document); ?>
输出:
DocumentObject ( )
静态方法
<?php abstractclassDomainObject{ private$group;//私有属性group publicfunction__construct(){ $this->group=static::getGroup();//static静态类 } publicstaticfunctioncreate(){ returnnewstatic(); } staticfunctiongetGroup(){//静态方法 return"default"; } } classUserextendsDomainObject{ } classDocumentextendsDomainObject{ staticfunctiongetGroup(){//改变了内容 return"document"; } } classSpreadSheetextendsDocument{//继承之后,group也就与document相同了 } print_r(User::create()); print_r(SpreadSheet::create()); ?>
输出:
UserObject ( [group:DomainObject:private]=>default ) SpreadSheetObject ( [group:DomainObject:private]=>document )
final字段
使类无法被继承,用的不多
<?php finalclassCheckout{//终止类的继承 //... } classIllegalCheckoutextendsCheckout{ //... } $checkout=newCheckout(); ?>
输出:
Fatalerror:ClassIllegalCheckoutmaynotinheritfromfinalclass(Checkout)
final方法不能够被重写
<?php classCheckout{ finalfunctiontotalize(){ //calculatebill } } classIllegalCheckoutextendsCheckout{ functiontotalize(){//不能重写final方法 //changebillcalculation } } $checkout=newCheckout(); ?>
输出:
Fatalerror:CannotoverridefinalmethodCheckout::totalize()
析构函数
<?php classPerson{ protected$name; private$age; private$id; function__construct($name,$age){ $this->name=$name; $this->age=$age; } functionsetId($id){ $this->id=$id; } function__destruct(){//析构函数 if(!empty($this->id)){ //savePersondata print"savingperson\n"; } if(empty($this->id)){ //savePersondata print"donothing\n"; } } } $person=newPerson("bob",44); $person->setId(343); $person->setId('');//最后执行析构函数,使用完之后执行 ?>
输出:
donothing
__clone方法
克隆的时候执行
<?php classPerson{ private$name; private$age; private$id; function__construct($name,$age){ $this->name=$name; $this->age=$age; } functionsetId($id){ $this->id=$id; } function__clone(){//克隆时候执行 $this->id=0; } } $person=newPerson("bob",44); $person->setId(343); $person2=clone$person; print_r($person); print_r($person2); ?>
输出:
PersonObject ( [name:Person:private]=>bob [age:Person:private]=>44 [id:Person:private]=>343 ) PersonObject ( [name:Person:private]=>bob [age:Person:private]=>44 [id:Person:private]=>0 )
再看一个例子
<?php classAccount{//账户类 public$balance;//余额 function__construct($balance){ $this->balance=$balance; } } classPerson{ private$name; private$age; private$id; public$account; function__construct($name,$age,Account$account){ $this->name=$name; $this->age=$age; $this->account=$account; } functionsetId($id){ $this->id=$id; } function__clone(){ $this->id=0; } } $person=newPerson("bob",44,newAccount(200));//以类对象作为参数 $person->setId(343); $person2=clone$person; //give$personsomemoney $person->account->balance+=10; //$person2seesthecredittoo print$person2->account->balance;//person的属性account也是一个类,他的属性balance的值是210 //output: //210 ?>
点评:学习还是能够开拓大脑的,今天终于明白为什么有多个箭头的概念了$person->account->balance。这里的account属性是一个对象。
__toString
<?php classPerson{ functiongetName(){return"Bob";} functiongetAge(){return44;} function__toString(){ $desc=$this->getName()."(age"; $desc.=$this->getAge().")"; return$desc; } } $person=newPerson(); print$person;//打印时候集中处理 //Bob(age44) ?>
点评:必须是print或echo时才有效,print_r就输出对象。
PersonObject()
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《PHP网络编程技巧总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。