博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 线程
阅读量:5154 次
发布时间:2019-06-13

本文共 822 字,大约阅读时间需要 2 分钟。

 

import timeimport threadingdef task_thread(counter):    print(f'线程名称:{threading.current_thread().name} 参数:{counter} 开始时间:{time.strftime("%Y-%m-%d %H:%M:%S")}')    num = counter    while num:        time.sleep(3)        num -= 1    print(f'线程名称:{threading.current_thread().name} 参数:{counter} 结束时间:{time.strftime("%Y-%m-%d %H:%M:%S")}')if __name__ == '__main__':    print(f'主线程开始时间:{time.strftime("%Y-%m-%d %H:%M:%S")}')    #初始化3个线程,传递不同的参数    t1 = threading.Thread(target=task_thread, args=(3,))    t2 = threading.Thread(target=task_thread, args=(2,))    t3 = threading.Thread(target=task_thread, args=(1,))    #开启三个线程    t1.start()    t2.start()    t3.start()    #等待运行结束    t1.join()    t2.join()    t3.join()    print(f'主线程结束时间:{time.strftime("%Y-%m-%d %H:%M:%S")}')

 

转载于:https://www.cnblogs.com/sea-stream/p/10316830.html

你可能感兴趣的文章
https://blog.csdn.net/u012106306/article/details/80760744
查看>>
海上孤独的帆
查看>>
处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“Manag
查看>>
01: socket模块
查看>>
mysql触发器
查看>>
淌淌淌
查看>>
win10每次开机都显示“你的硬件设置已更改,请重启电脑……”的解决办法
查看>>
C++有关 const & 内敛 & 友元&静态成员那些事
查看>>
函数积累
查看>>
Swift 入门之简单语法(六)
查看>>
〖Python〗-- IO多路复用
查看>>
栈(括号匹配)
查看>>
Java学习 · 初识 面向对象深入一
查看>>
源代码如何管理
查看>>
vue怎么将一个组件引入另一个组件?
查看>>
bzoj1040: [ZJOI2008]骑士
查看>>
LeetCode 74. Search a 2D Matrix(搜索二维矩阵)
查看>>
利用SignalR来同步更新Winfrom
查看>>
反射机制
查看>>
CocoaPod
查看>>