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

Python中的threading

时间:2016-04-01 19:00:50      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:threading

#!/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/1759283

Python中的threading

标签:threading

原文地址:http://2892931976.blog.51cto.com/5396534/1759283

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