首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python中的threading

Python中的threading

作者头像
py3study
发布2020-01-13 13:00:08
5440
发布2020-01-13 13:00:08
举报
文章被收录于专栏:python3python3

#!/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()      

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

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-08-08 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档