子类和父类存在同名函数的时候。

#问题描述

  • 在学习别人的code的时候,往往存在子类和父类,发现子类和父类存在同名函数,并且父类中改该方法是异常触发,如果子类的该方法有具体的执行内容的话, 其实是可以执行子类的方法,而不执行父类方法。
  • 具体例子:
python 复制代码
# 在这种情况下,子类 Child 提供了自己的 my_function 实现,该实现会覆盖父类# 的函数,并且不会触发异常。
class Parent:
    def my_function(self):
        raise NotImplementedError("This function is not implemented in the parent class")

class Child(Parent):
    def my_function(self):
        return "Custom implementation in the child class"

child_instance = Child()
result = child_instance.my_function()  # 这会调用子类的自定义实现
print(result)  # 输出: "Custom implementation in the child class"
相关推荐
大霸王龙3 分钟前
Python中使用PostgreSQL和Apache AGE扩展来绘制和显示图表
python·postgresql·apache
几两春秋梦_14 分钟前
PINN求解偏微分方程
人工智能·pytorch·python
数据小小爬虫18 分钟前
淘宝商品详情API返回值说明:Python爬虫代码示例
java·爬虫·python
重剑无锋102420 分钟前
【《python爬虫入门教程11--重剑无峰168》】
开发语言·爬虫·python
大学生毕业题目41 分钟前
毕业项目推荐:基于yolov8/yolov5的行人检测识别系统(python+卷积神经网络)
python·yolo·cnn
小王子10241 小时前
面向对象分析与设计Python版 面向对象的核心特征
python·面向对象·分析与设计
亲持红叶1 小时前
python pytesseract库,ocr
python
嘟嘟实验室1 小时前
FaceFusion3.1.1,deepfacelive模型使用教程,BUG修复,云端镜像支持
人工智能·python·macos·aigc·数字人·facefusion
子非鱼@Itfuture1 小时前
Spark是什么?Flink和Spark区别
java·大数据·数据仓库·python·flink·spark
Toormi2 小时前
Python实现一个简单的 HTTP echo 服务器
服务器·python·http