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

多线程简单实例

时间:2018-05-09 15:15:22      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:__init__   rgs   线程   方式   直接   start   art   print   thread   

import threading,time

#直接函数方式
# def run1(n):
#     print(n)
#     time.sleep(2)
# t1 = threading.Thread(target=run1,args=("t1",))
# t1.start()
# t2 = threading.Thread(target=run1,args=("t2",))
# t2.start()

#类方式
class MyThread(threading.Thread):
    def __init__(self,n):
        super(MyThread,self).__init__()
        self.n = n
    def run(self):      #这里函数名必须是叫run
        print("run in thread...",self.n)
        time.sleep(2)

t1 = MyThread("t1")
t2 = MyThread("t2")
t1.start()
t2.start()

  

多线程简单实例

标签:__init__   rgs   线程   方式   直接   start   art   print   thread   

原文地址:https://www.cnblogs.com/alex-hrg/p/9013224.html

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