parent::speedUp();//这句如何理解??
PHP5中使用parent::来引用父类的方法。
parent:: 可用于调用父类中定义的成员方法。
parent::的追溯不仅于直接父类。
parent::speedUp();
这句话的意思是 :调用父类的speedUp()方法;