PHP面向对象程序设计高级特性详解(接口,继承,抽象类,析构,克隆等)
php  /  管理员 发布于 7年前   176
本文实例讲述了PHP面向对象程序设计高级特性。分享给大家供大家参考,具体如下: 静态属性 输出:0 hello 点评:静态属性和方法,可以通过类直接调用。 SELF 输出: 点评:self 指向当前类, this指向当前对象。self可以调用当前类的静态属性和方法。this指向当前对象。self可以调用当前类的静态属性和方法。this可以调用当前类的正常属性和方法。 常量属性 输出:0 点评:常量只能用大写字母,并且可以通过类直接调用。 接口 如果没有实现getPrice方法,将会报错。 Fatal error: Class ShopProduct contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Chargeable::getPrice) 继承类与接口 抽象类 先来看一段代码 输出: 静态方法 输出: final字段 使类无法被继承,用的不多 输出: Fatal error: Class IllegalCheckout may not inherit from final class (Checkout) final方法不能够被重写 输出: Fatal error: Cannot override final method Checkout::totalize() 析构函数 输出: do nothing __clone方法 克隆的时候执行 输出: 再看一个例子 点评:学习还是能够开拓大脑的,今天终于明白为什么有多个箭头的概念了$person->account->balance。这里的account属性是一个对象。 __toString 点评:必须是print或echo时才有效,print_r就输出对象。 Person Object() 更多关于PHP相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《PHP网络编程技巧总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》 希望本文所述对大家PHP程序设计有所帮助。hello (1)hello (2)hello (3)
price; } // ...}$product = new ShopProduct();?>
Document Object()
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)
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( '' ); // 最后执行析构函数,使用完之后执行?>
name = $name; $this->age = $age; } function setId( $id ) { $this->id = $id; } function __clone() { // 克隆时候执行 $this->id = 0; }}$person = new Person( "bob", 44 );$person->setId( 343 );$person2 = clone $person;print_r( $person );print_r( $person2 );?>
Person Object( [name:Person:private] => bob [age:Person:private] => 44 [id:Person:private] => 343)Person Object( [name:Person:private] => bob [age:Person:private] => 44 [id:Person:private] => 0)
balance = $balance; }}class Person { private $name; private $age; private $id; public $account; function __construct( $name, $age, Account $account ) { $this->name = $name; $this->age = $age; $this->account = $account; } function setId( $id ) { $this->id = $id; } function __clone() { $this->id = 0; }}$person = new Person( "bob", 44, new Account( 200 ) ); // 以类对象作为参数$person->setId( 343 );$person2 = clone $person;// give $person some money$person->account->balance += 10;// $person2 sees the credit tooprint $person2->account->balance; // person的属性account也是一个类,他的属性balance的值是210// output:// 210?>
getName()." (age "; $desc .= $this->getAge().")"; return $desc; }}$person = new Person();print $person; // 打印时候集中处理// Bob (age 44)?>
您可能感兴趣的文章:
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号