重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

threadingTread属性

name,ident,is_active参数的演示

import threading
import time

def worker():
    count = 0
    while True:
        if count > 5:
            break
        time.sleep(2)
        count += 1
        print(threading.current_thread().name)

t = threading.Thread(target=worker, name="worker")
print(t.ident)
t.start()

while True:
    time.sleep(1)
    if t.is_alive():
        print('{} {} alive'.format(t.name, t.ident))
    else:
        print('{} {} dead'.format(t.name, t.ident))

标题名称:threadingTread属性
文章起源:http://cqcxhl.cn/article/pdhpgs.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP