摘要: # 一、绑定方法:特殊之处在于将调用者本身当做第一个参数自动传入 # 1)绑定给对象的方法:调用者是对象,自动传入的是对象 # 2)绑定给类的方法:调用者是类,自动传入的是类 # 类方法的应用 # 需求一 class MySQL: def __init__(self, host, port): se 阅读全文
posted @ 2023-04-14 03:04 coder雪山 阅读(17) 评论(0) 推荐(0) 编辑
摘要: # 1、什么是多态:同一事物有多种形态 class Animal: # 同一类事物:动物 def talk(self): pass class Cat(Animal): # 动物的形态之一:猫 def talk(self): print('喵喵喵') class Dog(Animal): # 动物的 阅读全文
posted @ 2023-04-14 01:15 coder雪山 阅读(45) 评论(0) 推荐(0) 编辑