元类(一)
  Hdj9iQhcP0rD 2023年11月02日 28 0
 1 # -*- coding: utf-8 -*-
 2 """ 
 3 @Time    : 2023-06-25 23:14
 4 @Description :
 5 @Author  : Mr.Gu
 6 """
 7 import time
 8 import types
 9 
10 
11 class Meta(type):
12     def __new__(cls, name, bases, attrs):
13         for key, value in attrs.items():
14             if isinstance(value, types.FunctionType) and not key.startswith("_"):
15                 attrs[key] = property(value)
16         return super().__new__(cls, name, bases, attrs)
17 
18     def __call__(cls, *args, **kwargs):
19         inst = super().__call__(*args, **kwargs)
20         inst.created_at = time.time()
21         return inst
22 
23 
24 class Valley(metaclass=Meta):
25     def func(self):
26         print("testing")
27 
28 
29 Valley().func
30 print(Valley().created_at)

元类在工作中一般很少用到,除非手写框架

1、__new__创建类时调用

2、__call__创建与初始化类实例时调用

 

【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

推荐阅读
  2Fnpj8K6xSCR   2024年05月17日   100   0   0 Python
  xKQN3Agd2ZMK   2024年05月17日   70   0   0 Python
  fwjWaDlWXE4h   2024年05月17日   38   0   0 Python
  YpHJ7ITmccOD   2024年05月17日   39   0   0 Python
Hdj9iQhcP0rD