Nested class is not defined in itself

不羁岁月 提交于 2019-11-28 01:39:35

问题


The following code successfully prints OK:

class B(object):
        def __init__(self):
            super(B, self).__init__()
            print 'OK'

class A(object):
    def __init__(self):
       self.B()

    B = B

A()

but the following which should work just as same as above one raises NameError: global name 'B' is not defined

class A(object):
    def __init__(self):
       self.B()

    class B(object):
        def __init__(self):
            super(B, self).__init__()
            print 'OK'
A()

why?


回答1:


B is available in the scope of A class - use A.B:

class A(object):
    def __init__(self):
       self.B()

    class B(object):
        def __init__(self):
            super(A.B, self).__init__()
            print 'OK'

A()

See documentation on Python Scopes and Namespaces.



来源:https://stackoverflow.com/questions/18341914/nested-class-is-not-defined-in-itself

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!