时间:2021-07-01 10:21:17 帮助过:31人阅读
name = $name; } } class House { //array of rooms public $room; } //create empty house $home = new house; //add some rooms $home->room[] = new Room("bedroom"); $home->room[] = new Room("kitchen"); $home->room[] = new Room("bathroom"); //show the first room of the house print($home->room[0]->name); ?>
blood = $blood; if($name) { $this->name = $name; } } } class Mammal extends Animal //哺乳动物 { public $furColor; //皮毛颜色 public $legs; function __construct($furColor, $legs, $name=NULL) { parent::__construct("warm", $name); $this->furColor = $furColor; $this->legs = $legs; } } class Dog extends Mammal { function __construct($furColor, $name) { parent::__construct($furColor, 4, $name); self::bark(); } function bark() { print("$this->name says woof!"); } } $d = new Dog("Black and Tan", "Angus"); ?>
http://www.bkjia.com/PHPjc/532557.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/532557.htmlTechArticle第六节--访问属性和方法 一个对象实例的属性是变量,就像PHP的其他变量一样. 但是你必须使用-运算符来引用它们. 不需要在属性前使用美元...