Python基础之元类详解


Posted in Python onApril 29, 2021

1.python 中一切皆是对象,类本身也是一个对象,当使用关键字 class 的时候,python 解释器在加载 class 的时候会创建一个对象(这里的对象指的是类而非类的实例)

class Student:
    pass
 
s = Student()
print(type(s))  # <class '__main__.Student'>
print(type(Student))  # <class 'type'>

2.什么是元类

元类是类的类,是类的模板
元类是用来控制如何创建类的,正如类是创建对象的模板一样
元类的实例为类,正如类的实例为对象。
type 是python 的一个内建元类,用来直接控制生成类,python中任何 class 定义的类其实是 type 类实例化的对象

3.创建类的两种方法:

# 方法一
class Student:
    def info(self):
        print("---> student info")
 
# 方法二
def info(self):
    print("---> student info")
 
Student = type("Student", (object,), {"info": info, "x": 1})

4.一个类没有声明自己的元类,默认其元类是 type, 除了使用元类 type, 用户也可以通过继承 type 来自定义元类

class Mytype(type):
    def __init__(self, a, b, c):
        print("===》 执行元类构造方法")
        print("===》 元类__init__ 第一个参数:{}".format(self))
        print("===》 元类__init__ 第二个参数:{}".format(a))
        print("===》 元类__init__ 第三个参数:{}".format(b))
        print("===》 元类__init__ 第四个参数:{}".format(c))
 
    def __call__(self, *args, **kwargs):
        print("=====》 执行元类__call__方法")
        print("=====》 元类__call__ args:{}".format(args))
        print("=====》 元类__call__ kwargs:{}".format(kwargs))
        obj = object.__new__(self)  # object.__new__(Student)
        self.__init__(obj, *args, **kwargs)  # Student.__init__(s, *args, **kwargs)
        return obj
 
 
class Student(metaclass=Mytype):  # Student=Mytype(Student, "Student", (), {}) ---> __init__
    def __init__(self, name):
        self.name = name  # s.name=name
 
print("Student类:{}".format(Student))
s = Student("xu")
print("实例:{}".format(s))
 
# 结果:
#     ===》 执行元类构造方法
#     ===》 元类__init__ 第一个参数:<class '__main__.Student'>
#     ===》 元类__init__ 第二个参数:Student
#     ===》 元类__init__ 第三个参数:()
#     ===》 元类__init__ 第四个参数:{'__module__': '__main__', '__qualname__': 'Student', '__init__': <function Student.__init__ at 0x00000269BCA9A670>}
#     Student类:<class '__main__.Student'>
#     =====》 执行元类__call__方法
#     =====》 元类__call__ args:('xu',)
#     =====》 元类__call__ kwargs:{}
#     实例:<__main__.Student object at 0x00000269BC9E8400>

到此这篇关于Python基础之元类详解的文章就介绍到这了,更多相关Python元类详解内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python中不同进制互相转换(二进制、八进制、十进制和十六进制)
Apr 05 Python
Python构造自定义方法来美化字典结构输出的示例
Jun 16 Python
flask使用session保存登录状态及拦截未登录请求代码
Jan 19 Python
Python socket套接字实现C/S模式远程命令执行功能案例
Jul 06 Python
Python实现的简单计算器功能详解
Aug 25 Python
如何基于Python批量下载音乐
Nov 11 Python
Python中断多重循环的几种方式详解
Feb 10 Python
解决django migrate报错ORA-02000: missing ALWAYS keyword
Jul 02 Python
python定义类的简单用法
Jul 24 Python
Python系统公网私网流量监控实现流程
Nov 23 Python
Python使用Kubernetes API访问集群
May 30 Python
python Tkinter模块使用方法详解
Apr 07 Python
教你怎么用Python监控愉客行车程
Django程序的优化技巧
Apr 29 #Python
教你怎么用Python实现多路径迷宫
python3.9之你应该知道的新特性详解
Apr 29 #Python
Python基础之tkinter图形化界面学习
Apr 29 #Python
Django cookie和session的应用场景及如何使用
Apr 29 #Python
Python使用random模块实现掷骰子游戏的示例代码
Apr 29 #Python
You might like
php实现ping
2006/10/09 PHP
在apache下限制每个虚拟主机的并发数!!!!
2006/10/09 PHP
自动生成文章摘要的代码[PHP 版本]
2007/03/20 PHP
PHP序列号生成函数和字符串替换函数代码
2012/06/07 PHP
解析php开发中的中文编码问题
2013/08/08 PHP
js检测客户端不是firefox则提示下载
2007/04/07 Javascript
基于jquery的textarea发布框限制文字字数输入(添加中文识别)
2012/02/16 Javascript
jqGrid 学习笔记整理——进阶篇(一 )
2016/04/17 Javascript
jQuery筛选数组之grep、each、inArray、map的用法及遍历json对象
2016/06/20 Javascript
JS中正则表达式只有3种匹配模式(没有单行模式)详解
2016/07/28 Javascript
js实现控制textarea输入字符串的个数,鼠标按下抬起判断输入字符数
2016/10/25 Javascript
JavaScript 巧学巧用
2017/05/23 Javascript
javascript实现非常简单的小数取整功能示例
2017/06/13 Javascript
Vue-CLI 项目在pycharm中配置方法
2019/08/30 Javascript
原生js实现分页效果
2020/09/23 Javascript
Python的Urllib库的基本使用教程
2015/04/30 Python
Python 获得13位unix时间戳的方法
2017/10/20 Python
Python SELENIUM上传文件或图片实现过程
2019/10/28 Python
html5录音功能实战示例
2019/03/25 HTML / CSS
HTML5播放实现rtmp流直播
2020/06/16 HTML / CSS
LG西班牙网上商店:Tienda LG Online Es
2019/07/30 全球购物
丝芙兰墨西哥官网:Sephora墨西哥
2020/05/30 全球购物
安全施工标语
2014/06/07 职场文书
电子专业自荐信
2014/07/01 职场文书
岗位说明书标准范本
2014/07/30 职场文书
企业领导对照检查材料
2014/08/20 职场文书
基层党组织建设整改方案
2014/09/16 职场文书
领导班子专题民主生活会情况想汇报
2014/09/30 职场文书
群众路线查摆问题及整改措施
2014/10/10 职场文书
房屋出售授权委托书
2014/10/12 职场文书
nginx网站服务如何配置防盗链(推荐)
2021/03/31 Servers
教你怎么用Python处理excel实现自动化办公
2021/04/30 Python
怎么用Python识别手势数字
2021/06/07 Python
P站美图推荐——变身女主角特辑
2022/03/20 日漫
详细介绍python操作RabbitMq
2022/04/12 Python
vue3 自定义图片放大器效果的示例代码
2022/07/23 Vue.js