摘要: 自定义类,继承 Thread,重写 run()方法 import threading import time class MyThread(threading.Thread): def __init__(self,thread_name): threading.Thread.__init__(sel 阅读全文
posted @ 2021-01-08 23:04 leungqingyun 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 进程 Progress: 本质上就是一段程序运行的过程 线程 Thread: 线程是进程里面的执行单元 1. 线程的基本调用 import threading import time def hi_thread(i): time.sleep(3) print('thread %s'%i) if __ 阅读全文
posted @ 2021-01-08 22:59 leungqingyun 阅读(272) 评论(0) 推荐(0) 编辑