2

如何使用类范围初始化子类?如何将父抽象类范围传递给子类?

我可以编写这段代码,但每次调用 getChild 我都会创建一个类,但要避免:

class Parent(object): # abstract class!
  @staticmethod
  def getParentName():
    raise NotImplementedError()

  @classmethod
  def getChild(cls): # solid class
    class Child(object):
      @staticmethod
      def getChildName():
        return 'Child of ' + cls.getParentName()
    return Child

class SomeParent(Parent):
  @staticmethod
  def getParentName():
    return 'Solid Parent'

print SomeParent.getChild().getChildName() # == 'Child of Solid Parent'

如何将上面的代码转换为在父范围内定义子类(考虑到父类是抽象的,所以我们不能使用 Parent2.getParentName() 因为它会被覆盖?

class Parent2(object): # abstract class!
  @staticmethod
  def getParentName()
    raise NotImplementedError()

  class Child2(object): # solid class
    # what code here to do the same like Child???
    pass

class SomeParent2(Parent): # final class
  @staticmethod
  def getParentName()
    return 'Solid Parent2'

SomeParent2.getChildClass().getChildName() # == 'Child of Solid Parent2'

除了没有建设性的内容外,任何帮助或提示都将受到欢迎。

4

1 回答 1

1

你不能

Python没有声明。它有类定义。定义类时,将执行Parent2缩进的代码。这意味着在那里定义的任何内部类都是在父级存在之前创建的。因此,不可能在类范围内知道。请注意,这与其他语言非常不同,例如允许在定义引用类的 Ruby。Child2Parent2

另请注意,您的两个示例做了两个非常不同的事情。如果将类定义放在方法中,则每次调用该方法时都会创建一个类,而在类范围内这样做意味着在父范围内只会创建一个类。

我也相信你的设计坏了。如果与 thenChild严格相关,Parent则您应该使用继承,在这种情况下,您只需简单地做self.getParentName(),没有任何花哨的东西,或者您可以使用委托。

如果你真的想做那件事,那么你必须在定义父类之后以某种方式“修复”这些类。为此,您可以使用类装饰器,或者简单地将代码显式放在父类之后。

于 2013-10-15T16:06:03.173 回答