您现在的位置是:课程教程文章
python创建新线程有哪些方法
2023-12-14 21:56课程教程文章 人已围观
1、方法
(1)直接创建threading.Thread对象,并把调用对象作为参数传入;
(2)继承threading.Thread类,重写run()方法。
2、实例
import threading import time def catch_fish(): Pass def one_thread(): start_time = time.time() for i in range(1, 1001): catch_fish() end_time = time.time() print("单线程测试 耗时 === %s" % str(end_time - start_time)) def muti_thread(): start_time = time.time() for i in range(1, 1001): threading.Thread(target=catch_fish()).start() end_time = time.time() print("多线程测试 耗时 === %s" % str(end_time - start_time)) if __name__ == '__main__': # 单线程 threading.Thread(one_thread()).start() # 多线程 muti_thread()
以上就是python创建新线程的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
课程教程:python创建新线程有哪些方法上一篇:python如何重写父类的方法
下一篇:没有了