什么是Python中嵌套类的替代方法

时间:2011-07-15 19:53:22

标签: python multithreading nested-class

我读了一篇帖子,说'嵌套类不是pythonic'是什么替代

请原谅我,这不是最好的例子,但它是基本概念。用于执行任务的嵌套类。我基本上必须连接多个线程的服务。

import threading, imporedlib

class Mother(threading.Thread):
    def __init__(self,val1,val2):
        self.VAL1 = val1
        self.VAL2 = val2
    def connectandrun():
        for i in range(5):
            Child.run(i)
    class Child:
        def run(self):
            importedlib.runajob(Mother.VAL1, Mother.VAL2)

1 个答案:

答案 0 :(得分:7)

您想使用合成:

import threading, importedlib

class Child:
    def __init__(self, parent):
        self.parent=parent

    def run(self):
        importedlib.runajob(parent.VAL1, parent.VAL2)



class Mother(threading.Thread):
    def __init__(self,val1,val2):
        self.VAL1 = val1
        self.VAL2 = val2

    def connectandrun():
        c= Child(self)
        for i in range(5):
            c.run(i)

当然,“妈妈”和“孩子”的名字在这里不再合适,但你明白了。