Python:如何调用正在运行的线程的方法

时间:2017-06-15 13:06:27

标签: python multithreading

我想知道是否可以以某种方式调用来自"外部"的线程中定义的方法。本身。这就是这个想法:

class ThreadWithCallableMethods(threading.Thread):     
    def callableMethodOne():
        print "This is the first method"

    def callableMethodTwo():
        print "This is the second one"

theThread = ThreadWithCallableMethods()
theThread.start()
theThread.callableMethodOne()
theThread.callableMethodTwo()

0 个答案:

没有答案