Python 添加类方法
添加方法
示例
在 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)
自己尝试 »
如果你在子类中添加一个与父类函数同名的方法,父类方法的继承将被覆盖。