课程
/后端开发
/PHP
/PHP进阶篇
定义继承于Car的Truck类 是这样写?
2014-12-30
源自:PHP进阶篇 2-8
正在回答
是这样写的
class Truck extends Car{
function speedUp(){
$this->speed +=60;
return $this->speed;
}
举报
轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序
5 回答class Truck extends Car{ public function speedUp(){ $this->speed=parent::speedUp()+50; } }
1 回答子类Truck中$this->speed是指向父类Car中的变量吗
3 回答$car = new Car(); 什么意思
4 回答<?php class Car { private function __construct(){ echo 'object creat'; } private static $_object = null; public static function getInstance(){ if(empty(self::$_object)){ self::$object = new Car(); }
2 回答$car->speed,为什么不是$car->$speed?