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

多线程Thread类

时间:2019-04-01 17:11:29      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:star   tar   start   threading   sel   画图   font   read   import   

为了让线程更好的封装,可以使用threading模块下的Thread类,继承这个类,然后实现run方法,线程就会自动运行run方法中的代码。

示例如下:

#encoding: utf-8
import threading
import time

class CodingThread(threading.Thread):
def run(self):
for x in range(3):
print(‘正在写代码%s‘%threading.current_thread())
time.sleep(1)
class DrawingThread(threading.Thread):
def run(self):
for j in range(3):
print(‘正在画图%s‘%threading.current_thread())#打印当前线程的名字
time.sleep(1)

def multi_thread():
t1 = CodingThread()
t2 = DrawingThread()

t1.start()
t2.start()
if __name__ == "__main__":
multi_thread()

多线程Thread类

标签:star   tar   start   threading   sel   画图   font   read   import   

原文地址:https://www.cnblogs.com/cyz123/p/10637249.html

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