摘要:
自定义类,继承 Thread,重写 run()方法 import threading import time class MyThread(threading.Thread): def __init__(self,thread_name): threading.Thread.__init__(sel 阅读全文
摘要:
进程 Progress: 本质上就是一段程序运行的过程 线程 Thread: 线程是进程里面的执行单元 1. 线程的基本调用 import threading import time def hi_thread(i): time.sleep(3) print('thread %s'%i) if __ 阅读全文