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
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 Python 字符串 Python 布尔值 Python 运算符 Python 列表 Python 元组 Python 集合 Python 字典 Python If...Else Python While 循环 Python For 循环 Python 函数 Python Lambda Python 数组 Python 类/对象 Python 继承 Python 迭代器 Python 多态 Python 范围 Python 模块 Python 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 条形图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 平均数、中位数、众数 标准差 百分位数 数据分布 正态数据分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K-均值 自助聚集 交叉验证 AUC - ROC 曲线 K 近邻

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入 MySQL 选择 MySQL Where MySQL Order By MySQL 删除 MySQL 删除表 MySQL 更新 MySQL Limit MySQL 连接

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入 MongoDB 查找 MongoDB 查询 MongoDB 排序 MongoDB 删除 MongoDB 删除集合 MongoDB 更新 MongoDB Limit

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 术语表

模块参考

随机模块 请求模块 统计模块 数学模块 cMath 模块

Python 如何做

移除列表重复项 反转字符串 加两个数字

Python 示例

Python 示例 Python 编译器 Python 练习 Python 问答 Python 服务器 Python 面试问答 Python 集训营 Python 证书

Python 继承


Python 继承

继承允许我们定义一个类,该类继承另一个类的所有方法和属性。

父类是继承的类,也称为基类。

子类是继承另一个类的类,也称为派生类。


创建父类

任何类都可以是父类,因此语法与创建其他类相同

示例

创建一个名为 Person 的类,具有 firstnamelastname 属性以及一个 printname 方法

class Person
  def __init__(self, fname, lname)
    self.firstname = fname
    self.lastname = lname

  def printname(self)
    print(self.firstname, self.lastname)

#使用 Person 类创建一个对象,然后执行 printname 方法

x = Person("John", "Doe")
x.printname()
自己尝试一下 »

创建子类

要创建继承另一个类功能的类,请在创建子类时将父类作为参数发送

示例

创建一个名为 Student 的类,它将继承 Person 类的属性和方法

class Student(Person)
  pass

注意: 当您不想向类添加任何其他属性或方法时,请使用 pass 关键字。

现在 Student 类具有与 Person 类相同的属性和方法。

示例

使用 Student 类来创建对象,然后执行 printname 方法

x = Student("Mike", "Olsen")
x.printname()
自己尝试一下 »


添加 __init__() 函数

到目前为止,我们创建了一个子类,它继承了其父类的属性和方法。

我们想要将 __init__() 函数添加到子类(而不是 pass 关键字)。

注意: 每当使用类创建新对象时,都会自动调用 __init__() 函数。

示例

__init__() 函数添加到 Student

class Student(Person)
  def __init__(self, fname, lname)
    # 添加属性等

当您添加 __init__() 函数时,子类将不再继承父类的 __init__() 函数。

注意: 子类的 __init__() 函数覆盖了父类的 __init__() 函数的继承。

要保留父类 __init__() 函数的继承,请添加对父类 __init__() 函数的调用

示例

class Student(Person)
  def __init__(self, fname, lname)
    Person.__init__(self, fname, lname)
自己尝试一下 »

现在我们已成功添加了 __init__() 函数,并保留了父类的继承,我们已准备好向 __init__() 函数中添加功能。


使用 super() 函数

Python 还具有一个 super() 函数,它将使子类继承其父类的所有方法和属性

示例

class Student(Person)
  def __init__(self, fname, lname)
    super().__init__(fname, lname)
自己尝试一下 »

通过使用 super() 函数,您不必使用父元素的名称,它将自动继承其父类的所有方法和属性。


添加属性

示例

Student 类添加一个名为 graduationyear 的属性

class Student(Person)
  def __init__(self, fname, lname)
    super().__init__(fname, lname)
    self.graduationyear = 2019
自己尝试一下 »

在下面的示例中,年份 2019 应该是一个变量,并在创建学生对象时传递到 Student 类中。为此,请在 __init__() 函数中添加另一个参数

示例

添加一个 year 参数,并在创建对象时传递正确的年份

class Student(Person)
  def __init__(self, fname, lname, year)
    super().__init__(fname, lname)
    self.graduationyear = year

x = Student("Mike", "Olsen", 2019)
自己尝试一下 »

添加方法

示例

Student 类添加一个名为 welcome 的方法

class Student(Person)
  def __init__(self, fname, lname, year)
    super().__init__(fname, lname)
    self.graduationyear = year

  def welcome(self)
    print("Welcome", self.firstname, self.lastname, "to the class of", self.graduationyear)
自己尝试一下 »

如果您在子类中添加了一个与父类中的函数同名的函数,那么父类方法的继承将被覆盖。



×

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.