Python 创建子类
创建子类
要创建继承另一个类功能的类,在创建子类时将父类作为参数传递
示例
创建一个名为 Student
的类,该类将继承 Person
类的属性和方法
class Student(Person)
pass
注意:当你不想向类添加其他属性或方法时,使用 pass
关键字。
现在 Student 类具有与 Person 类相同的属性和方法。
要创建继承另一个类功能的类,在创建子类时将父类作为参数传递
创建一个名为 Student
的类,该类将继承 Person
类的属性和方法
class Student(Person)
pass
注意:当你不想向类添加其他属性或方法时,使用 pass
关键字。
现在 Student 类具有与 Person 类相同的属性和方法。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]