共计 519 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,无法直接停止子线程。但可以通过设置一个标志位,在子线程中定期检查该标志位,以判断是否停止线程。以下是一个示例代码:
import threading
# 标志位,用于控制子线程是否停止
stop_flag = False
# 子线程执行的函数
def child_thread_func():
global stop_flag
while not stop_flag:
# 子线程执行的逻辑
pass
# 创建子线程
child_thread = threading.Thread(target=child_thread_func)
# 启动子线程
child_thread.start()
# 停止子线程的函数
def stop_child_thread():
global stop_flag
stop_flag = True
# 调用停止子线程的函数
stop_child_thread()
上述代码中,通过设置全局变量 stop_flag
作为标志位,在子线程中定期检查该标志位。当 stop_flag
为True
时,子线程会退出循环,从而停止线程的执行。然后通过调用 stop_child_thread()
函数来改变 stop_flag
的值,从而实现停止子线程的功能。
丸趣 TV 网 – 提供最优质的资源集合!
正文完