码迷,mamicode.com
首页 > 编程语言 > 详细

Python进阶(多线程)

时间:2019-07-07 09:32:48      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:current   模拟   style   getname   逻辑   构建   sleep   多线程   执行时间   

import threading

def worker():#子线程要执行的具体逻辑代码函数
    print(threading)
    t1 = threading.current_thread()
    time.sleep(9)#通过休眠模拟子线程异步逻辑
    print(t1.getName())

new_t = threading.Thread(target=worker,name=dxc1)#构建子线程
new_t.start()#开启子线程

t = threading.current_thread()#构建主线程
print(t.getName())#主线程的代码执行不会受子线程的worker线程函数执行时间的影响

 

Python进阶(多线程)

标签:current   模拟   style   getname   逻辑   构建   sleep   多线程   执行时间   

原文地址:https://www.cnblogs.com/xingxingclassroom/p/11145027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!