摘要: 注 一.面向对象动态与静态方法 1.动态方法 #绑定给对象方法 class Student: # 定义一个类(Student)类名 def run(self): # 定义函数(run)参(self) print(self) # 展示(打印)传的值(实参) Student.run(123) # 类调用 阅读全文
posted @ 2022-04-07 20:17 笑舞狂歌 阅读(28) 评论(0) 推荐(0) 编辑