python--多线程编程 threading(二)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/monkeysheep1234/article/details/84385111

python--多线程编程 threading(一)

通过继承Thread来实现多线程

#-*-coding:utf-8-*-
import threading
import time

class GetDetailHtml(threading.Thread):
    def __init__(self,name):
        super().__init__(name=name)
    def run(self):
        print("get detail html started")
        time.sleep(2)
        print("get detail html end")

class GetDetailUrl(threading.Thread):
    def __init__(self, name):
        super().__init__(name=name)
    def run(self):
        print("get detail url started")
        time.sleep(4)
        print("get detail url end")

if __name__=="__main__":
    thread1 = GetDetailHtml("get_detail_html")
    thread2 = GetDetailUrl("get_detail_url")
    start_time = time.time()
    thread1.start()
    thread2.start()
    thread1.join()
    thread2.join()
    print("last time:{}".format(time.time()-start_time))

猜你喜欢

转载自blog.csdn.net/monkeysheep1234/article/details/84385111
今日推荐