快上网专注成都网站设计 成都网站制作 成都网站建设
成都网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

threadingstart()和run()的区别

threading Tread run() 和 start()区别

import threading
import time

def worker():
    count = 0
    while True:
        if count > 5:
            break
        time.sleep(1)
        count += 1
        print('worker running and threading_name={}'.format(
            threading.current_thread().name))

class MyThread(threading.Thread):
    def start(self):
        print('start-------')
        super().start()

    def run(self):
        print('run------')
        super().run()

t = MyThread(name='worker',target=worker)
# t.start()
t.run()

网站名称:threadingstart()和run()的区别
网站路径:http://6mz.cn/article/poeceg.html

其他资讯