Python 官方文档:入门教程 => 点击学习
__author__ = 'LL_YING' ''' 线程创建之后,可以使用Thread对象的isAlive方法查看线程是否运行,为True则运行 ''' import threading import time class myThr
__author__ = 'LL_YING'
'''
线程创建之后,可以使用Thread对象的isAlive方法查看线程是否运行,为True则运行
'''
import threading
import time
class myThread(threading.Thread):
def __init__(self, num):
threading.Thread.__init__(self)
self.num = num
def run(self):
time.sleep(5)
print(self.num)
def func():
t.start()
print(t.isAlive())
t = myThread(1)
func()
t = myThread(1)
# 输出
# True
# 1
--结束END--
本文标题: Python线程isAlive方法
本文链接: https://lsjlt.com/news/186371.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0