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

2-2 开启线程的两种方式

时间:2019-10-13 10:52:52      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:RoCE   code   target   ==   接口   hello   __init__   import   str   

一 threading模块介绍

multiprocess模块的完全模仿了threading模块的接口,二者在使用层面,有很大的相似性,因而不再详细介绍

二 开启线程的两种方式

方式一

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=('egon',))
    t.start()
    print('主线程')

方式二

#方式二
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('egon')
    t.start()
    print('主线程')

2-2 开启线程的两种方式

标签:RoCE   code   target   ==   接口   hello   __init__   import   str   

原文地址:https://www.cnblogs.com/shibojie/p/11664769.html

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