首页 > 编程语言 > 详细

[TimLinux] Python 元类

时间:2018-06-12 23:49:03      阅读:178      评论:0      收藏:0      [点我收藏+]

1. type函数

技术分享图片
name = "This is a string"
print(type(name))  # <class ‘str‘>
print("*" * 10, "分界线", "*" * 10)

cls = type(Foo, (), {})
f = cls()
print(type(f))  # <class ‘__main__.Foo‘>
print(type(cls))  # <class ‘type‘>
print(cls.__name__)  # Foo
print("*" * 10, "分界线", "*" * 10)

def init(self, name, age):
    self.name = name
    self.age = age
    print(self.name, self.age)

cls = type(Foo, (object, ), {__init__: init})
f = cls(Tim, 22)  # Tim 22
View Code

 

2. __new__函数

技术分享图片
class Foo(object):
    def __init__(self, name, age):
        self.name = name
        self.age = age
        print(self.name, self.age)

    def tmp(self):
        print("call tmp()")

    def __new__(cls, *args, **kwargs):
        print("call __new__")
        obj = object.__new__(cls)
        print("id(obj)===", id(obj))
        return obj


f1 = Foo(Tim, 22) # 这一个操作,等于===下面的两步操作。
print("id(f1)===", id(f1))
f1.tmp()

#call __new__
#id(obj)=== 1507711426120
#Tim 22
#id(f1)=== 1507711426120
#call tmp()

f2 = Foo.__new__(Foo)
print("id(f2)===", id(f2))
f2.__init__(Tim, 22)
f2.tmp()

#call __new__
#id(obj)=== 1507711426232
#id(f2)=== 1507711426232
#Tim 22
#call tmp()
View Code

 

3. __init__函数

__init__函数,如果由Foo类能声明对象的时候,调用顺序是,先调用__new__,然后通过使用python提供的object.__new__方法,来创建一个对象,接下来把这个对象返回,然后由这个返回的对象,来调用__init__方法。

Foo.__new__ --> 通过object.__new__生产对象 --> 使用这个对象调用Foo.__init__方法-->完成类的对象声明

4. __metaclass__变量

ttt

 

[TimLinux] Python 元类

原文:https://www.cnblogs.com/timlinux/p/9175543.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!