摘要: 1 class A: 2 @property 3 def name(self): 4 return "123" 5 6 7 print(A.name) # 8 9 10 class B(type): 11 @property 12 def name(cls): 13 return "123" 14 1... 阅读全文
posted @ 2018-07-26 11:40 两只老虎111 阅读(277) 评论(0) 推荐(0) 编辑