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

使用两种方式编写多线程程序?

时间:2019-01-01 21:46:49      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:targe   方式   pre   编写   apollo   width   none   one   get   

# 方案1
from threading import Thread
import time

class Sayhi(Thread):
    def __init__(self,name):
        super().__init__()
        self.name=name
    def run(self):
        time.sleep(2)
        print(%s say hello % self.name)

if __name__ == __main__:
    t = Sayhi(妹子)
    t.start()
    print(主线程)
# 方案2
from threading import Thread
import time
def sayhi(name):
    time.sleep(2)
    print(%s say hello %name)

if __name__ == __main__:
    t=Thread(target=sayhi,args=(apollo,))
    t.start()
    print(主线程)

 

使用两种方式编写多线程程序?

标签:targe   方式   pre   编写   apollo   width   none   one   get   

原文地址:https://www.cnblogs.com/apollo1616/p/10206044.html

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