<?php
class Car {
public $speed = 0; //汽车的起始速度是0
public function speedUp() {
$this->speed += 10;
return $this->speed;
}
}
//定义继承于Car的Truck类
class Truck extends car{
public function speedUp(){
$this->speed=parent::speedUp()+40;
}
}
$car = new Truck();
$car->speedUp();
echo $car->speed;
smarry_微笑
2014-08-06
举报
0/150
提交
取消