摘要: python 元类 class Car(object): def __init__(self,name): print('init') self.name=name def __new__(cls, *args, **kwargs): print('new') return super().__ne 阅读全文
posted @ 2024-03-05 10:18 嘚惹 阅读(2) 评论(0) 推荐(0) 编辑