Python学习笔记二十四(|Python学习笔记二十四( 元类 )

__class__属性 __class__属性可以查看对象的类型.

class Person(object): passperson = Person()print(person.__class__)# 运行结果 #

Person 类的实例对象person 的类型时Person 类类型, Python 是面向对象的语言, 那么Person 的类对象的类型又是什么?
class Person(object): passperson = Person()print(person.__class__) print(Person.__class__)# int 的类型 print(int.__class__) # str 的类型 print(str.__class__)# 运行结果 # # # #

Person / int / str 的类对象的类型都是type 类类型.
那么type类对象 的类型又是什么类型?
class Person(object): passprint(Person.__class__.__class__)# int 的类型 print(int.__class__.__class__) # str 的类型 print(str.__class__.__class__) print(type.__class__)# 运行结果 # # # #

type 类对象的类型还是type 类类型, 那么type 类是干嘛的?
元类 type 类是元类, Python中所有的类默认都是使用type 类创建的, type 类属于Python中的高深魔法, 一般很少用到.
""" type(object_or_name, bases, dict) type(object) -> the object's type type(name, bases, dict) -> a new type """

type类有两个功能,
  • type(object) : 一个参数,返回object 的类型
  • type(name, bases, dict) : 三个参数,返回一个新的类型
type(object)
class Person(object): passperson = Person()print(type(person))# 查看person 实例对象的类型 print(type(Person))# 查看Person 类对象的类型# 运行结果 # #

type(name, bases, dict) 使用type 创建一个类
【Python学习笔记二十四(|Python学习笔记二十四( 元类 )】正常创建Person 类的子类Teacher
class Person(object): passclass Teacher(Person): def __init__(self): self.name = "Teacher"# help() 函数用于查看函数或模块用途的详细说明。 print(help(Teacher))

元类创建Person 类的子类Student
class Person(object): passdef __init__(self): self.name = "Student"# "Student" 是类名 Student = type("Student", (Person,), {"__init__": __init__}) # help() 函数用于查看函数或模块用途的详细说明。 print(help(Student))

运行结果对比

Python学习笔记二十四(|Python学习笔记二十四( 元类 )
文章图片
01对比.png 元类创建类
class Person(object): passdef __init__(self): pass@classmethod def test_cls_func(cls): pass@staticmethod def test_static_func(): passStudent = type( "Student",# 类名 (Person,),# 所有的父类,使用元组传参{"__init__": __init__,# 实例方法 "test_cls_func": test_cls_func,# 类方法 "test_static_func": test_static_func,# 静态方法 "type_name": "student",# 类属性 }# 类包含的属性 )print(help(Student))# 运行结果 # {'__init__': , # 'test_cls_func': , # 'test_static_func': , # 'type_name': 'student', # '__module__': '__main__', # '__doc__': None}

运行结果

Python学习笔记二十四(|Python学习笔记二十四( 元类 )
文章图片
02运行结果.png 注意:
class Person(object): pass# Student 只是一个变量,引用了type 返回的Student类型 Student = type("Student", (Person,), {"type_name": "student", }) student = Student()# Student2 只是一个变量,引用了type 返回的Student类型 Student2 = type("Student", (Person,), {"type_name": "student", }) student2 = Student2()print(type(student)) print(type(student2))# 运行结果 # #

元类改造类 元类除了能创建一个类,也能改造一个类.
class ChangeClass(type):# 这个必须是type子类 def __new__(cls, class_name, super_names, attrs): print("class_name: %s" % class_name) print("super_names: %s" % super_names) print("attrs: %s" % attrs)tmp_attrs = dict()# 将所有 实例/类/静态 方法的名字改为小写 for key, value in attrs.items():# hasattr(value, "__call__")判断值是一个func 对象, # 不能使用isinstance , 因为 class function: # TODO not defined in builtins!(源码) if hasattr(value, "__call__") or isinstance(value, classmethod) or isinstance(value, staticmethod): tmp_attrs[key.lower()] = value continue tmp_attrs[key] = valuereturn type.__new__(cls, class_name, super_names, tmp_attrs)# 一般工作中用这种方式class Preson(object, metaclass=ChangeClass): cls_name = "cls_name"def __init__(self): self.self_name = "self_name"@classmethod def Test_Cls_Func(cls): passprint("改造后 " + "*" * 20) print(Preson.__dict__) # 运行结果 # class_name: Preson # super_names: # attrs: {'__module__': '__main__', '__qualname__': 'Preson', 'cls_name': 'cls_name', #'__init__': , #'Test_Cls_Func': } # 改造后 ******************** # {'__module__': '__main__', 'cls_name': 'cls_name', #'__init__': , #'test_cls_func': , #'__dict__': , #'__weakref__': , '__doc__': None}

结语 经过近两个月的努力, 写下了Python 学习笔记系列共计二十四篇, 限于本人精力以及能力, 篇章中如有错误之处, 烦请各位告知, 便于更正, 以利他人.
是结束亦是开始, 革命尚未成功, 同志仍需努力.
Html / Css / JavaScript 学习 : w3school 在线教程
Python 教程 : 廖雪峰 Python 教程
菜鸟教程
到此结??DragonFangQy 2018.5.27

    推荐阅读