美文网首页
python threading 自定义多线程-固定线程执行任务

python threading 自定义多线程-固定线程执行任务

作者: 数据小新手 | 来源:发表于2018-08-08 15:28 被阅读0次

    ## 你好

    ```

    from threadingimport Thread 

    import threading

    def test(a,b):

    print('test')

    print(a+b,a,b,threading.current_thread())

    class myThread (threading.Thread):

    def __init__(self, name):

    threading.Thread.__init__(self)

    self.name = name

    def run(self,a,b):

    test(a,b)

    print ("开始线程:" +self.name,threading.currentThread())

    def main():

    t=myThread('one')

    for in range(5):

    a=i+1

            b=i+2

            t.run(a,b)

    main()

    ```

    相关文章

      网友评论

          本文标题:python threading 自定义多线程-固定线程执行任务

          本文链接:https://www.haomeiwen.com/subject/rfkxbftx.html