php开发教程子类中调用父类成员
php开发教程子类中调用父类成员<?php
//父类
class Person {
public function show() {
echo '这是人类<br>';
}
}
//子类
class Student extends Person {
public function test() {
//方法一;
/*
$person=new Person();
$person->show(); //这是人类
*/
//方法二
$this->show(); //这是人类
}
}
//测试
$stu=new Student;
$stu->test();小结:1、方法一:通过实例化父类调用父类的成员2、方法二:通过$this关键字调用父类的成员
页:
[1]