Python 从入门到实战24(类的继承)

我们的目标是:通过这一套资料学习下来,通过熟练掌握python基础,然后结合经典实例、实践相结合,使我们完全掌握python,并做到独立完成项目开发的能力。

上篇文章我们讨论了类的定义、使用方法、@property的相关知识。今天我们将学习一下类的继承。

1、继承的基本语法

继承是面向对象编程最重要的特性之一,被继承的类称为父类或者基类。在它的基础上新建的类称为子类或者派生类。

继承的语法格式:

class ClassName(baseclasslist):

'''类的帮助信息'''

statement #类体

参数说明:ClassName -----指定类名

statement -----类体,主要由类变量、方法和属性等定义语句组成

baseclasslist----要继承的基类,可以有多个,类名之间由,分割

1)举例1:

#水果类为基类,然后创建其派生类的练习

class Fruit: #定义水果类

color = "green" #定义类的属性

def harvest(self,color): #定义方法

print("水果颜色是:"+color+"的!")

print("水果收获了!")

print("水果开始是:"+Fruit.color+"的!") #输出类的属性

class Banana(Fruit): #定义派生类香蕉

color = "yellow"

def init(self):

print("我是香蕉")

class Pear(Fruit): #定义派生类梨

color = "cyan"

def init(self):

print("我是梨")

banana = Banana() #创建类的实例

banana.harvest(Banana.color)#调用基类的方法

pear = Pear() #创建类的实例

pear.harvest(Pear.color)#调用基类的方法

输出结果参考:

2)举例2

#举例汽车类

class Vehicle:

def init(self, make, model, year):

self.make = make

self.model = model

self.year = year

def start(self):

print(f"{self.make} {self.model} started.")

def stop(self):

print(f"{self.make} {self.model} stopped.")

class Car(Vehicle):

def start(self):

print(f"{self.make} {self.model} revved the engine and started.")

car = Car()

car.start()

这样写执行会报错,car = Car() 因为car 继承Vehicle类,继承init方法

需要加上参数:car = Car("BYD","宋pro","2025")

改写后正常输出:

2、方法重写

基类的成员都会被派生类继承,当基类中的某个方法不完全适用派生类时,可以在派生类重写类的方法。还是上面的例子,我们重写harvest 方法

举例说明:

#水果类为基类,然后创建其派生类的练习

class Fruit: #定义水果类

color = "green" #定义类的属性

def harvest(self,color): #定义方法

print("水果颜色是:"+color+"的!")

print("水果收获了!")

print("水果开始是:"+Fruit.color+"的!") #输出类的属性

class Banana(Fruit): #定义派生类香蕉

color = "yellow"

def init(self):

print("我是香蕉")

class Pear(Fruit): #定义派生类梨

color = "cyan"

def init(self):

print("我是梨")

def harvest(self,color):
print("梨的颜色是:" + color + "的!")
print("梨收获了!")
print("梨开始是:" + Fruit.color + "的!") # 输出类的属性

banana = Banana() #创建类的实例

banana.harvest(Banana.color)#调用基类的方法

pear = Pear() #创建类的实例

pear.harvest(Pear.color)#调用基类的方法

上面代码黄色阴影的部分是重写方法,输出结果参考:

3、派生类中调用基类的__init__()方法

在派生类中定义__init__()方法时,不会自动调用基类的__init__()。

如下面例子:

#水果类为基类,然后创建其派生类的练习

class Fruit: #定义水果类

def init(self,color="green"):

Fruit.color = color

def harvest(self): #定义方法

print("水果开始是:"+Fruit.color+"的!") #输出类的属性

class Banana(Fruit): #定义派生类香蕉

color = "yellow"

def init(self):

print("我是香蕉")

banana = Banana()

banana.harvest()

上面这么写会报错,不能直接调用基类的__init__()

若是想要在派生类中调用基类__init__()方法,需要在派生类中使用super()函数,下面添加黄色背景部分的代码,注意缩进,是在派生类的__init__()方法中调用基类的__init__()方法。

#水果类为基类,然后创建其派生类的练习

class Fruit: #定义水果类

def init(self,color="green"):

Fruit.color = color

def harvest(self): #定义方法

print("水果开始是:"+Fruit.color+"的!") #输出类的属性

class Banana(Fruit): #定义派生类香蕉

def init(self):

print("我是香蕉")

super().init()

banana = Banana()

banana.harvest()

参考输出:

再举例说明具体的应用:

#水果类为基类,然后创建其派生类的练习

class Fruit: #定义水果类

def init(self,color="green"):

Fruit.color = color

def harvest(self,color): #定义方法

print("水果的颜色是:"+self.color+"的!") #输出类的属性

print("水果开始收获了")

print("水果开始的颜色是:" + Fruit.color + "的!") # 输出类的属性

class Banana(Fruit): #定义派生类香蕉

color = "yellow"

def init(self):

print("我是香蕉")

super().init()#调用时并没有输出,只是传color,基类默认的

class Pear(Fruit): #定义派生类梨

#color = "cyan"

def init(self,color):

print("\n我是梨")

super().init(color) # 调用时并没有输出,只是传color,更改基类默认的

def harvest(self,color):#重写方法

print("梨的颜色是:" + color + "的!")

print("梨收获了!")

print("梨开始是:" + Fruit.color + "的!") # 输出类的属性

banana = Banana()

banana.harvest(banana.color)

pear = Pear("cyan") #创建类的实例

pear.harvest("yellow white")#调用基类的方法

输出结果参考:

今天先写学习到这里了,每天进步一点点。明天也要加油啊!

相关推荐
星星也在雾里2 分钟前
Anaconda命令行配置Jupyter Notebook虚拟环境
python·jupyter
极光代码工作室3 分钟前
基于机器学习的信用卡欺诈检测系统设计
人工智能·python·深度学习·机器学习
一晌小贪欢8 分钟前
PyQt5 开发一个 PDF 批量合并工具
开发语言·qt·pdf
神仙别闹8 分钟前
基于 MATLAB 实现的图像信号处理
开发语言·matlab·信号处理
迷藏4949 分钟前
**超融合架构下的Go语言实践:从零搭建高性能容器化微服务集群**在现代云原生时代,*
java·python·云原生·架构·golang
swift1922114 分钟前
Qt多语言问题 —— 静态成员变量
开发语言·c++·qt
深度学习lover14 分钟前
<数据集>yolo 船舶识别<目标检测>
人工智能·python·yolo·目标检测·计算机视觉·船舶分类识别
测试秃头怪15 分钟前
Python+selenium搭建Web自动化测试框架
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
Irene199116 分钟前
PyCharm 改字体大小
python·pycharm
昆曲之源_娄江河畔17 分钟前
婴儿版GPT
python·gpt·ai·transformer