PHP

php implements怎样实现继承

小樊
81
2024-11-22 20:35:57
栏目: 编程语言

在 PHP 中,实现类之间的继承主要使用 extends 关键字。子类通过 extends 关键字继承父类的属性和方法。下面是一个简单的示例:

// 父类
class ParentClass {
    public $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function sayHello() {
        echo "Hello, my name is " . $this->name;
    }
}

// 子类
class ChildClass extends ParentClass {
    public $age;

    public function __construct($name, $age) {
        parent::__construct($name); // 调用父类的构造方法
        $this->age = $age;
    }

    // 重写父类的方法
    public function sayHello() {
        echo "Hello, my name is " . $this->name . " and I am " . $this->age . " years old.";
    }
}

// 创建子类对象
$child = new ChildClass("John", 25);

// 调用继承自父类的方法
$child->sayHello(); // 输出: Hello, my name is John and I am 25 years old.

在这个示例中,ChildClass 通过 extends 关键字继承了 ParentClass。子类继承了父类的属性和方法,并重写了 sayHello() 方法。当我们创建一个 ChildClass 对象并调用 sayHello() 方法时,它将执行子类中的版本,同时仍然可以访问继承自父类的属性和方法。

0
看了该问题的人还看了