线程使用
python
import threading
thread01 = None
def ThreadFunc(param)
xxxxx
def Test()
global thread01
thread01 = threading.Thread(target=ThreadFunc)
thread01.daemon = True #设置为TRUE,主线程结束后,此线程也会退出, 默认False
thread01.start()
也可以在创建线程时给参数
thread01 = threading.Thread(target=ThreadFunc,name="t1",daemon=True)
等待线程中止
thread01.join()