python在用tk编程时, 界面响应函数最好在另外一个线程中运行, 以免界面没有响应.
为方便使用, 封装了一个装饰器, 调用函数时自动在另外一个线程中运行.
示例代码如下:
import threading
def run_in_thread(func):
def wrapper(*args, **kwargs):
thread = threading.Thread(target=func, args=args, kwargs=kwargs)
thread.start()
return wrapper
@run_in_thread
def my_function(a):
# 在新线程中运行的函数
print(f"运行在新线程中:{a}")
# 调用函数,将在新线程中运行
my_function(10)
标签:thread,python,args,线程,kwargs,装饰,运行
From: https://www.cnblogs.com/huzhongqiang/p/17563672.html