首页 > 编程语言 > 详细

Python中的threading

时间:2016-04-01 16:16:29      阅读:178      评论:0      收藏:0      [点我收藏+]

#!/usr/bin/env python

# -*- coding: utf-8 -*-


import threading, time


#新线程执行的代码:

def loop():

    print(‘thread %s is running...‘ % threading.current_thread().name)

    n = 0

    while n < 5:

        n = n + 1

        print(‘thread %s ‘ % threading.current_thread().name)

        time.sleep(3)

    print(‘thread %s ended.‘ % threading.current_thread().name)


print(‘thread %s is running...‘ % threading.current_thread().name)

t = threading.Thread(target=loop, name=‘LoopThread‘)

t.start()

#t.join()

print(‘thread %s ended.‘ % threading.current_thread().name)


执行结果:

thread MainThread is running...

thread LoopThread is running...thread MainThread ended.


thread LoopThread

thread LoopThread

thread LoopThread

thread LoopThread

thread LoopThread

thread LoopThread ended.


会在主线程中创建子线程,主线程和子线程并行运行


#!/usr/bin/env python

# -*- coding: utf-8 -*-


import Queue 

import time 

import threading 

import random 


def go(name):

   # time.sleep(1)

    print("go" + str(name))

    time.sleep(1)


for j in range(20):

    t1 = threading.Thread(group=None, target=go, name=None, args=(j,)) 

    t1.start()


for i in range(20):

    go(i)


j是并行执行,主线程和20个子线并行执行

i是串行执行,只有主线程



#!/usr/bin/env python

# -*- coding: utf-8 -*-


import Queue 

import time 

import threading 

import random 



q = Queue.Queue()


def pro(name):

    print("---pro data kaiqi")

    #time.sleep(3)

    for i in range(20):

        time.sleep(1)

        print(name + "pro data" + str(i))

        q.put(i)


def con(name):

    print("-----con data kaiqi")

    n = 0

    while n < 20:

        time.sleep(3)

        data = q.get()

        print(name + "con data----" + str(data))

        n += 1


t1 = threading.Thread(group=None, target=pro, name=None, kwargs={‘name‘:‘laoban‘}) 

t2 = threading.Thread(group=None, target=con, name=None, kwargs={‘name‘:‘yuangong‘})

t1.start()

t2.start()      


两个线程并行交互,在一个队列中拿数据

本文出自 “大荒芜经” 博客,请务必保留此出处http://2892931976.blog.51cto.com/5396534/1759178

Python中的threading

原文:http://2892931976.blog.51cto.com/5396534/1759178

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!