标签:
<?php
header ("content-type:text/html;charset=utf8");
class Car {
private static $speed = 10;
public static function getSpeed() {
return self::$speed;
}
public static function speedUp() {
return self::$speed+=10;
}
}
class BigCar extends Car {
public static function start() {
parent::speedUp();
}
}
BigCar::start();
echo BigCar::getSpeed();
标签:
原文地址:http://www.cnblogs.com/lidepeng/p/5931765.html