2019年12月14日
摘要: ```python # -*- coding: utf-8 -*- """ 继承的意义:实现代码重用,数据函数都可以重用 子类覆盖,子类与父类同名 选择性继承 super().__init__()可以减少重复构造,节约资源 """ class Wangjianlin(object): """大家好,我是大连王健林""" def __init__(self): self.motto = "我是王健林 阅读全文
posted @ 2019-12-14 23:58 行之间 阅读(126) 评论(0) 推荐(0) 编辑