本文实例讲述了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
class ShopProduct {
const AVAILABLE = 0; // 只能用大写字母命名常量
const OUT_OF_STOCK = 1;
public $status;
}
print ShopProduct::AVAILABLE;
?>
输出:0
点评:常量只能用大写字母,并且可以通过类直接调用。
接口
<?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 ( )
静态方法
<?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());
?>







