摘要: hasattr(对象, 属性(字符串)) getattr(对象, 属性(字符串)) 从对象中获取到xxx属性 setattr(对象, 属性, 值) delattr(对象, 属性) 从对象中删除xxx属性 class Foo(object): pass class Bar(Foo): pass cla 阅读全文
posted @ 2018-11-09 17:45 冰底熊 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 类与类之间的关系 1. 依赖关系. 通过参数的传递把另外一个类的对象传递进来 2. 关联关系, 组合, 聚合. 通过属性设置来维护两个对象的关系 def __init__(): self.stuList = [] def __init__(): self.teacher = teacher clas 阅读全文
posted @ 2018-11-09 17:34 冰底熊 阅读(283) 评论(0) 推荐(0) 编辑