当前位置: 首页 > 图灵资讯 > 行业资讯> python多线程中的threading使用技巧

python多线程中的threading使用技巧

来源:图灵python
时间: 2024-11-13 16:47:18

任何一个区域设定里总归是有一个掌控大局的管理者,这跟我们在公司里,需要一个领导统筹布局是一样的道理,那在python多线程里,也有一个这么重要角色的方法——threading,相信大家也不少见过吧,那大家知道关于这个方法实用的功能有哪些吗?为什么大家都选择它?还理解认知不清楚的,可以继续往下看文。

threading模块的主要应用:

多线程启动

#多线程启动
importos
importtime
fromthreadingimportThread

deffunc():
time.sleep(1)
print('hello线程',os.getpid())

t=Thread(target=func)
t.start()
print(os.getpid())

#结果
#6360
#hello线程6360

同步开启多线程

#同步开启多线程
importos
importtime
fromthreadingimportThread

deffunc():
time.sleep(1)
print('hello线程',os.getpid())
thread_l=[]
foriinrange(10):
t=Thread(target=func)
t.start()
thread_l.append(t)
forjinthread_l:
j.join()
print(os.getpid())

大家如果在碰到需要多线程运转开启的时候,直接调用这个模块,演示代码在上述给大家均已提供,如果还需要代码解说,直接套用上述内容即可。