上一页 1 ··· 4 5 6 7 8
  2018年11月4日
摘要: class Single: __ISINSTANCE=None def __new__(cls, *args, **kwargs):#构造方法 在实例化对象之前在__init__()之前执行 #第一个参数cls是当前正在实例化的类。 if not cls.__ISINSTANCE: cls.__ISINSTANCE=obje... 阅读全文
posted @ 2018-11-04 13:32 有钱淫 阅读(207) 评论(0) 推荐(0) 编辑
摘要: class A: def __call__(self, *args, **kwargs): print('执行了call方法') def call(self): print('执行call方法') class B: def __init__(self,cls): print('在实例化A之前做一些事情') s... 阅读全文
posted @ 2018-11-04 09:34 有钱淫 阅读(500) 评论(0) 推荐(0) 编辑
  2018年11月3日
摘要: #什么是反射? #用字符串数据类型的变量名来访问这个变量的值 #————————类的反射 class Student: Money=0 @classmethod def check_course(cls): print('查看课程了') @staticmethod def login(): print('登录成功') #反... 阅读全文
posted @ 2018-11-03 22:02 有钱淫 阅读(178) 评论(0) 推荐(0) 编辑
摘要: class P: def __init__(self,name,age): self.name=name if type(age) is int: self.__age=age else: print('你输入的年龄的类型有误,请重新输入数字') @property def a... 阅读全文
posted @ 2018-11-03 13:46 有钱淫 阅读(214) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8