python中的多线程实例教程
本文以实例形式较为详细的讲述了python中多线程的用法,在python程序设计中有着比较广泛的应用。分享给大家供大家参考之用。具体分析如下:
python中关于多线程的操作可以使用thread和threading模块来实现,其中thread模块在py3中已经改名为_thread,不再推荐使用。而threading模块是在thread之上进行了封装,也是推荐使用的多线程模块,本文主要基于threading模块进行介绍。在某些版本中thread模块可能不存在,要使用dump_threading来代替threading模块。
一、线程创建
threading模块中每个线程都是一个thread对象,创建一个线程有两种方式,一种是将函数传递到thread对象中执行,另一种是从thread继承,然后重写run方法(是不是跟java很像)。
下面使用这两种方法分别创建一个线程并同时执行
import random, threading def threadfunction(): for i in range(10): print 'threadfuction - %d'%i time.sleep(random.randrange(0,2)) class threadclass(threading.thread): def __init__(self): threading.thread.__init__(self); def run(self): for i in range(10): print 'threadclass - %d'%i time.sleep(random.randrange(0,2)) if __name__ == '__main__': tfunc = threading.thread(target = threadfunction); tcls = threadclass() tfunc.start() tcls.start()
执行结果如下,可以看到两个线程在交替打印。至于空行和一行多个输出,是因为py的print并不是线程安全的,在当前线程的print打印了部分内容后,准备打印换行之前,被别的线程中的print抢先,在换行之前打印了其它的内容。
threadfuction - 0 threadfuction - 1 threadfuction - 2 threadclass - 0 threadfuction - 3 threadclass - 1 threadfuction - 4 threadclass - 2 threadclass - 3 threadclass - 4threadfuction - 5 threadclass - 5 threadclass - 6 threadclass - 7 threadclass - 8 threadfuction - 6threadclass - 9 threadfuction - 7 threadfuction - 8 threadfuction - 9
thread类的构造函数定义如下
class threading.thread(group=none, target=none, name=none, args=(), kwargs={})
group: 留作threadgroup扩展使用,一般没什么用
target:新线程的任务函数名
name: 线程名,一般也没什么用
args: tuple参数
kwargs:dictionary参数
thread类的成员变量和函数如下
start() 启动一个线程
run() 线程执行体,也是一般要重写的内容
join([timeout]) 等待线程结束
name 线程名
ident 线程id
daemon 是否守护线程
isalive()、is_alive() 线程是否存活
getname()、setname() name的get&set方法
isdaemon()、setdaemon() daemon的get&set方法
这里的守护线程与linux中的守护进程并不是一个概念。这里是指当所有守护线程退出后主程序才会退出,否则即使线程任务没有结束,只要不是守护线程,都会跟着主程序一起退出。而linux中的守护进程定义正好相反,守护进程已经脱离父进程,不会随着父进程的结束而退出。
二、线程同步
线程同步是多线程中的一个核心问题,threading模块对线程同步有着良好的支持、包括线程特定数据、信号量、互斥锁、条件变量等。
1.线程特定数据
简而言之,线程特定数据就是线程独自持有的全局变量,相互之间的修改不会造成影响。
threading模块中使用local()方法生成一个线程独立对象,举例如下,其中sleep(1)是为了保证让子线程先运行完再运行接下来的语句。
data = threading.local() def threadfunction(): global data data.x = 3 print threading.currentthread(), data.x if __name__ == '__main__': data.x = 1 tfunc = threading.thread(target = threadfunction).start(); time.sleep(1) print threading.current_thread(), data.x
<thread(thread-1, started 36208)> 3 <_mainthread(mainthread, started 35888)> 1
输出如上,可以看到,thread-1中对data.x的修改并没有影响到主线程中data.x的值。
2.互斥锁
threading中定义了两种锁:threading.lock和threading.rlock。两者的不同在于后者是可重入锁,也就是说在一个线程内重复lock同一个锁不会发生死锁,这与posix中的pthread_mutex_recursive也就是可递归锁的概念是相同的。
关于互斥锁的api很简单,只有三个函数————分配锁,上锁,解锁。
threading.lock() 分配一个互斥锁
acquire([blocking=1]) 上锁(阻塞或者非阻塞,非阻塞时相当于try_lock,通过返回false表示已经被其它线程锁住。)
release() 解锁
下面通过一个例子来说明互斥锁的使用。在之前的例子中,多线程print会造成混乱的输出,这里使用一个互斥锁,来保证每行一定只有一个输出。
def threadfunction(arg): while true: lock.acquire() print 'threadfuction - %d'%arg lock.release() if __name__ == '__main__': lock = threading.lock() threading.thread(target = threadfunction, args=(1,)).start(); threading.thread(target = threadfunction, args=(2,)).start();
3.条件变量
条件变量总是与互斥锁一起使用的,threading中的条件变量默认绑定了一个rlock,也可以在初始化条件变量的时候传进去一个自己定义的锁。
可用的函数如下
threading.condition([lock]) 分配一个条件变量 acquire(*args) 条件变量上锁 release() 条件变量解锁 wait([timeout]) 等待唤醒,timeout表示超时 notify(n=1) 唤醒最大n个等待的线程 notifyall()、notify_all() 唤醒所有等待的线程 下面这个例子使用条件变量来控制两个线程交替运行 num = 0 def threadfunction(arg): global num while num < 10: cond.acquire() while num % 2 != arg: cond.wait() print 'thread %d - %d' %(arg, num) num += 1 cond.notify() cond.release() if __name__ == '__main__': cond = threading.condition() threading.thread(target = threadfunction, args=(0,)).start(); threading.thread(target = threadfunction, args=(1,)).start();
输出如下
thread 0 - 0 thread 1 - 1 thread 0 - 2 thread 1 - 3 thread 0 - 4 thread 1 - 5 thread 0 - 6 thread 1 - 7 thread 0 - 8 thread 1 - 9 thread 0 - 10
其实上面这个程序是有问题的,我们想打印的是0~9,但实际上10也被打印了出来,原因很简单,因为两个线程交替打印,使得num在一个线程中可能加2,从而导致10被打印出来,所以必须在打印前再次check。
相信本文所述对大家的python程序设计有一定的借鉴价值。
上一篇: php上传文件,创建递归目录的实例代码
下一篇: javascript自执行匿名函数
推荐阅读
-
python中pycurl库的用法实例
-
Android多线程处理机制中的Handler使用介绍
-
零基础写python爬虫之urllib2中的两个重要概念:Openers和Handlers
-
Python面向对象程序设计中类的定义、实例化、封装及私有变量/方法详解
-
Python3中编码与解码之Unicode与bytes的讲解
-
Python中的异常处理try/except/finally/raise用法分析
-
Python中类的创建和实例化操作示例
-
python 对txt中每行内容进行批量替换的方法
-
下载python中Crypto库报错:ModuleNotFoundError: No module named ‘Crypto’的解决
-
完美解决python中ndarray 默认用科学计数法显示的问题