__new__与__init__

2017-08-14  本文已影响9人  CaesarsTesla
class A():
    def __init__(self, name='default'):
        self.name = name
        print(self)
        print(self.name)
        print('init方法')

    def __new__(cls, *args, **kwargs):
        print(id(cos))#4321337720
        print('new方法')
        ret = object.__new__(cls)
        return ret


print(id(A))#4321337720
a = A()

输出:

4321337720
4321337720
new方法
<__main__.A object at 0x101b79710>
default
init方法

如果我们在new中并不返回该对象的实例的话,则不会调用init

上一篇 下一篇

猜你喜欢

热点阅读