V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
ilucio
V2EX  ›  Python

求问 Python 单例模式__new__函数执行顺序

  •  
  •   ilucio · 2018-05-18 17:05:18 +08:00 · 2431 次点击
    这是一个创建于 2162 天前的主题,其中的信息可能已经有所发展或是发生改变。
    有两个类 A、B 均为单例,B 继承 A。实例化 B 时发现会先执行 B 的__new__函数,然后再执行 A 的__new__函数,请问各位大佬这是为什么?

    class A(object):
    _instance = None
    def __new__(cls, *args, **kw):
    if not cls._instance:
    print 'create A instance'
    cls._instance = super(A, cls).__new__(cls, *args, **kw)
    else:
    print 'instance A exists'
    return cls._instance

    def __init__(self):
    print 'A'

    class B(A):
    _instance = None
    def __new__(cls,*args,**kw):
    if not cls._instance:
    print 'create B instance'
    cls._instance = super(B, cls).__new__(cls, *args, **kw)
    else:
    print 'instance B exists'
    return cls._instance

    def __init__(self):
    print 'B'

    b1=B()

    输出为:
    create B instance
    create A instance
    B
    5 条回复    2018-05-19 10:28:57 +08:00
    SKYNE
        1
    SKYNE  
       2018-05-18 17:51:50 +08:00
    Python3 下没输出 B, 不太懂,也想知道为什么。
    weyou
        2
    weyou  
       2018-05-18 18:57:01 +08:00 via Android   ❤️ 1
    执行顺序没问题啊,你认为应该什么顺序呢。Python3 下没输出 B 是因为你的__new__函数创建实例后没有将实例返回,将后面 else 中的 return 减少一个缩进就可以了。
    ilucio
        3
    ilucio  
    OP
       2018-05-19 09:31:23 +08:00
    我的是 2.7 环境,会输出 B
    ilucio
        4
    ilucio  
    OP
       2018-05-19 09:36:25 +08:00
    困惑的地方有两点:1、为什么会生成 A 的实例? 2、B 是继承于 A,为什么不是先生成 A 的实例然后生成 B 的实例?
    wwqgtxx
        5
    wwqgtxx  
       2018-05-19 10:28:57 +08:00   ❤️ 1
    @ilucio 对于第二个问题,在 B 继承与 A 的情况下,当然是先创建 B,然后在创建 B 的过程中完成创建 A 的所有步骤再继续完成创建 B
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5288 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 01:26 · PVG 09:26 · LAX 18:26 · JFK 21:26
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.