资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

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://cdkjz.cn/article/poeceg.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220