python多线程操作实例

yipeiwu_com5年前Python基础

一、python多线程

因为CPython的实现使用了Global Interpereter Lock(GIL),使得python中同一时刻只有一个线程在执行,从而简化了python解释器的实现,且python对象模型天然地线程安全。如果你想你的应用程序在多核的机器上使用更好的资源,建议使用multiprocessing或concurrent.futures.processpoolexecutor。但是如果你的程序是IO密集型,则使用线程仍然是很好的选择。

二、python多线程使用的两种方法

实例:

复制代码 代码如下:

import threading
import time

def worker(num):
  print (threading.currentThread().getName() + ' start')
  time.sleep(10)
  print (threading.currentThread().getName() + ' running')
  print (threading.currentThread().getName() + " " + str(num))
  print (threading.currentThread().getName() + ' exit')
 
def deamon():
  print (threading.currentThread().getName() + ' start')
  time.sleep(20)
  print (threading.currentThread().getName() + ' running')
  print (threading.currentThread().getName() + ' exit')
 
print(threading.currentThread().getName())

d = threading.Thread(name='deamon', target=deamon)
d.setDaemon(True)
d.start()

w = threading.Thread(name='worker', target=worker, args=(10,))
w.start()

class myWorker(threading.Thread):
    def __init__(self, num): 
        threading.Thread.__init__(self) 
        self.num = num 
        self.thread_stop = False 
  
    def run(self):
        print (self.getName()+' start')
        time.sleep(30)
        print (self.getName()+' running')
        print (self.getName()+" " + str(self.num))
        print (self.getName()+' exit')
 
mw = myWorker(30)
mw.setName("MyWorker")
mw.start()

print(threading.currentThread().getName())

print("All threads:")
print("------------")
for th in threading.enumerate():
  print(th.getName())
print("------------")

d.join()
w.join()
mw.join()

print(threading.currentThread().getName())

运行结果如下:

1)python线程使用的两种方法:

**直接调用threading.Thread来构造thread对象,Thread的参数如下:
class threading.Thread(group=None, target=None, name=None, args=(), kwargs={}) 
group为None;
target为线程将要执行的功能函数;
name为线程的名字,也可以在对象构造后调用setName()来设定;
args为tuple类型的参数,可以为多个,如果只有一个也的使用tuple的形式传入,例如(1,);
kwargs为dict类型的参数,也即位命名参数;

**实现自己的threading.Thread的子类,需要重载__init__()和run()。

2)threading.Thread对象的其他方法:

start(),用来启动线程;
join(), 等待直到线程结束;
setDeamon(), 设置线程为deamon线程,必须在start()调用前调用,默认为非demon。
注意: python的主线程在没有非deamon线程存在时就会退出。

3)threading的静态方法:

threading.current_thread() , 用来获得当前的线程;
threading.enumerate() , 用来多的当前存活的所有线程;
threading.Timer 定时器,其实是thread的一个字类型,使用如下:

复制代码 代码如下:

def hello(): print("hello, world")  
t = Timer(30.0, hello)
t.start()

4)logging是线程安全的

logging 模块是线程安全的,所以可以使用logging来帮助调试多线程程序。

复制代码 代码如下:

import logging
logging.basicConfig(level=logging.DEBUG,
format="(%(threadName)-10s : %(message)s",
)
logging.debug("wait_for_event_timeout starting")

相关文章

python如何给字典的键对应的值为字典项的字典赋值

问题 1:需要得到一个类似{“demo”:{“key”:”value”}}这样格式的字典dic。 dic = dict() dic_temp = dict() dic_temp =...

Python绘制的二项分布概率图示例

Python绘制的二项分布概率图示例

本文实例讲述了Python绘制的二项分布概率图。分享给大家供大家参考,具体如下: 问题: 抛硬币,20次,每一次朝上的概率是0.3.要求绘制连续几次正面朝上的概率图 Python代码:...

简单了解python中的与或非运算

简单了解python中的与或非运算

真的很重要,栽了个跟头!!!(虽然以前好像知道。。。) print(True or False and False) print((True or False) and False)...

Python 编码规范(Google Python Style Guide)

Python 风格规范(Google) 本项目并非 Google 官方项目, 而是由国内程序员凭热情创建和维护。 如果你关注的是 Google 官方英文版, 请移步 Googl...

python3转换code128条形码的方法

这年头如果用 python3 做条形码的,肯定(推荐)用 pystrich 。 这货官方文档貌似都没写到支持 Code128 ,但是居然有这个类( Code128Encoder )。。。...