其他分享
首页 > 其他分享> > threading Tread属性

threading Tread属性

作者:互联网

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))

标签:count,ident,Tread,worker,threading,print,属性,name
来源: https://blog.51cto.com/windchasereric/2353992