摘要:
阅读全文
摘要:
阅读全文
摘要:
1 #!/usr/bin/env python 2 class Mapper: 3 __mapper_relation = {}#__私有化,其他类不能访问 4 5 @staticmethod 6 def register(cls,value): 7 Mapper.__mapper_relation[cls] = value 8 9 ... 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
1 #!/usr/bin/env python 2 #抽象方法抽象类 3 import abc 4 class Foo(metaclass=abc.ABCMeta): 5 def f1(self): 6 raise Exception(".....") 7 def f2(self): 8 pass 9 @abc.abstr... 阅读全文
摘要:
阅读全文