Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

PHP 教程

PHP 主页 PHP 简介 PHP 安装 PHP 语法 PHP 注释 PHP 变量 PHP Echo / Print PHP 数据类型 PHP 字符串 PHP 数字 PHP 类型转换 PHP 数学 PHP 常量 PHP 魔术常量 PHP 运算符 PHP If...Else...Elseif PHP Switch PHP 循环 PHP 函数 PHP 数组 PHP 超全局变量 PHP 正则表达式

PHP 表单

PHP 表单处理 PHP 表单验证 PHP 表单必填项 PHP 表单 URL/电子邮件 PHP 表单完成

PHP 高级

PHP 日期和时间 PHP Include PHP 文件处理 PHP 文件打开/读取 PHP 文件创建/写入 PHP 文件上传 PHP Cookies PHP Sessions PHP 过滤器 PHP 过滤器高级 PHP 回调函数 PHP JSON PHP 异常

PHP OOP

PHP 什么是 OOP PHP 类/对象 PHP 构造函数 PHP 析构函数 PHP 访问修饰符 PHP 继承 PHP 常量 PHP 抽象类 PHP 接口 PHP Traits PHP 静态方法 PHP 静态属性 PHP 命名空间 PHP 可迭代对象

MySQL 数据库

MySQL 数据库 MySQL 连接 MySQL 创建数据库 MySQL 创建表 MySQL 插入数据 MySQL 获取最后插入的 ID MySQL 插入多条数据 MySQL 预处理语句 MySQL 查询数据 MySQL Where MySQL Order By MySQL 删除数据 MySQL 更新数据 MySQL 限制数据

PHP XML

PHP XML 解析器 PHP SimpleXML 解析器 PHP SimpleXML - 获取 PHP XML Expat PHP XML DOM

PHP - AJAX

AJAX 简介 AJAX PHP AJAX 数据库 AJAX XML AJAX 实时搜索 AJAX 投票

PHP 示例

PHP 示例 PHP 编译器 PHP 测验 PHP 练习 PHP 服务器 PHP 证书

PHP 参考

PHP 概述 PHP 数组 PHP 日历 PHP 日期 PHP 目录 PHP 错误 PHP 异常 PHP 文件系统 PHP 过滤器 PHP FTP PHP JSON PHP 关键字 PHP Libxml PHP 邮件 PHP 数学 PHP 杂项 PHP MySQLi PHP 网络 PHP 输出控制 PHP 正则表达式 PHP SimpleXML PHP 流 PHP 字符串 PHP 变量处理 PHP XML 解析器 PHP Zip PHP 时区

PHP OOP - 继承


PHP - 什么是继承?

OOP 中的继承 = 当一个类派生自另一个类。

子类将继承父类中的所有公共和受保护的属性和方法。此外,它可以有自己的属性和方法。

继承类是使用 extends 关键字定义的。

让我们看一个例子

示例

<?php
class Fruit {
  public $name;
  public $color;
  public function __construct($name, $color) {
    $this->name = $name;
    $this->color = $color;
  }
  public function intro() {
    echo "The fruit is {$this->name} and the color is {$this->color}.";
  }
}

// Strawberry 从 Fruit 继承
class Strawberry extends Fruit {
  public function message() {
    echo "Am I a fruit or a berry? ";
  }
}
$strawberry = new Strawberry("Strawberry", "red");
$strawberry->message();
$strawberry->intro();
?>
尝试一下 »

示例说明

Strawberry 类继承自 Fruit 类。

这意味着 Strawberry 类可以使用 Fruit 类中的公共 $name 和 $color 属性以及公共 __construct() 和 intro() 方法,因为继承。

Strawberry 类也有自己的方法:message()。



PHP - 继承和受保护的访问修饰符

在上一章中,我们了解到 protected 属性或方法可以在类内部和从该类派生的类中访问。这是什么意思?

让我们看一个例子

示例

<?php
class Fruit {
  public $name;
  public $color;
  public function __construct($name, $color) {
    $this->name = $name;
    $this->color = $color;
  }
  protected function intro() {
    echo "The fruit is {$this->name} and the color is {$this->color}.";
  }
}

class Strawberry extends Fruit {
  public function message() {
    echo "Am I a fruit or a berry? ";
  }
}

// 尝试从类外部调用所有三个方法
$strawberry = new Strawberry("Strawberry", "red");  // 正常。__construct() 是公共的
$strawberry->message(); // 正常。message() 是公共的
$strawberry->intro(); // 错误。intro() 是受保护的
?>
尝试一下 »

在上面的示例中,我们看到如果我们尝试从类外部调用 protected 方法 (intro()),我们将收到错误。 public 方法将正常工作!

让我们看另一个例子

示例

<?php
class Fruit {
  public $name;
  public $color;
  public function __construct($name, $color) {
    $this->name = $name;
    $this->color = $color;
  }
  protected function intro() {
    echo "The fruit is {$this->name} and the color is {$this->color}.";
  }
}

class Strawberry extends Fruit {
  public function message() {
    echo "Am I a fruit or a berry? ";
    // 从派生类内部调用受保护的方法 - 正常
    $this -> intro();
  }
}

$strawberry = new Strawberry("Strawberry", "red"); // 正常。__construct() 是公共的
$strawberry->message(); // 正常,因为 message() 是公共方法,它在派生类中调用了 intro()(它是受保护的)。
?>
尝试一下 »

在上面的示例中,我们看到一切正常!这是因为我们在派生类内部调用了 protected 方法(intro())。


PHP - 重写继承的方法

继承的方法可以通过在子类中重新定义方法(使用相同名称)来重写。

看看下面的例子。子类(Strawberry)中的 __construct() 和 intro() 方法将重写父类(Fruit)中的 __construct() 和 intro() 方法。

示例

<?php
class Fruit {
  public $name;
  public $color;
  public function __construct($name, $color) {
    $this->name = $name;
    $this->color = $color;
  }
  public function intro() {
    echo "The fruit is {$this->name} and the color is {$this->color}.";
  }
}

class Strawberry extends Fruit {
  public $weight;
  public function __construct($name, $color, $weight) {
    $this->name = $name;
    $this->color = $color;
    $this->weight = $weight;
  }
  public function intro() {
    echo "水果是 {$this->name},颜色是 {$this->color},重量是 {$this->weight} 克。";
  }
}

$strawberry = new Strawberry("草莓", "红色", 50);
$strawberry->intro();
?>
尝试一下 »

PHP - final 关键字

final 关键字可以用来阻止类继承或阻止方法重写。

以下示例演示了如何阻止类继承

示例

<?php
final class Fruit {
  // 一些代码
}

// 将导致错误
class Strawberry extends Fruit {
  // 一些代码
}
?>
尝试一下 »

以下示例演示了如何阻止方法重写

示例

<?php
class Fruit {
  final public function intro() {
    // 一些代码
  }
}

class Strawberry extends Fruit {
  // 将导致错误
  public function intro() {
    // 一些代码
  }
}
?>
尝试一下 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.