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

python--线程

时间:2018-01-31 01:09:16      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:col   close   pre   启动   closed   log   技术   body   python   

一、使用threading模块实现多线程

技术分享图片
import threading
import time

def test():
    print(111111111)

if __name__ == __main__:
    for i in range(5):
        t = threading.Thread(target=test)
        t.start()    #启动线程
使用threading实现多线程

二、使用threading子类实现多线程

技术分享图片
import threading
import time

class myThread(threading.Thread):
    def run(self):
        for i in range(3)
            time.sleep(1)
            print(11111)

if __name__ == __main__:
    t = myThread()
    t.start()
使用threading子类实现多线程

三、一些注意点

  1.多线程之间共享全局变量

python--线程

标签:col   close   pre   启动   closed   log   技术   body   python   

原文地址:https://www.cnblogs.com/peilanluo/p/8387828.html

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