gpt4 book ai didi

Python:是在主线程中定义并从主线程或调用线程中的另一个运行中调用的函数

转载 作者:行者123 更新时间:2023-11-28 17:48:33 25 4
gpt4 key购买 nike

假设我有这样一个程序:

import threading

def dosomething():
print "Something"

class thread2(threading.Thread):
def run():
dosomething()

thread2().start()

dosomething() 会从定义它的主线程运行,还是从调用它的 thread2 运行?

我将其用于 pygame 程序,因为您不能从多个类中调用 pygame 的方法。

最佳答案

在何处声明函数并不重要。该函数将由调用它的线程执行。

关于Python:是在主线程中定义并从主线程或调用线程中的另一个运行中调用的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14270688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com