python多線程學習

推薦使用threading模塊个唧,而不是用thread模塊

thread模塊的方式

主要是三個步驟
1婉称、創(chuàng)建鎖后獲取鎖對象攘乒,添加到鎖列表中
2贤牛、創(chuàng)建線程,并添加上鎖
3则酝、在while循環(huán)中盔夜,直到鎖被釋放掉才進行下一步

#-*- coding:utf-8 -*-
import thread
from time import sleep, ctime

loops = [4,2]

def loop(nloop, nsec, lock):
print 'start loop', nloop, 'at:', ctime()
sleep(nsec)
print 'loop', nloop, 'done at:', ctime()
lock.release() # 釋放鎖


def main():
print 'start at: ', ctime()
locks = []
nloops = range(len(loops))

for i in nloops:
lock = thread.allocate_lock() # 獲得鎖對象
lock.acquire() # 取得鎖,并把鎖鎖上
locks.append(lock) # 添加鎖到 locks 列表

for i in nloops:
thread.start_new_thread(loop, (i, loops[i], locks[i]))

for i in nloops:
while locks[i].locked(): # 當鎖不在鎖狀態(tài)后跳出循環(huán)
pass

print 'all doneat', ctime()

if __name__ == '__main__':
main()

使用threading模塊的方式

主要三種形式堤魁,主要使用第一種跟第三種

第一種:創(chuàng)建一個 Thread 實例,傳給他一個函數(shù)

1返十、創(chuàng)建 Thread實例妥泉,添加到線程列表
2、啟動線程列表中的線程
3洞坑、通過join阻塞線程直到完成盲链,最后出現(xiàn)結果

#-*- coding:utf-8 -*-
import threading
from time import sleep, ctime

"""
創(chuàng)建一個 Thread 實例,傳給他一個函數(shù)
"""

loops = [ 4, 2]

def loop(nloop, nsec):
print 'start loop', nloop, 'at:', ctime()
sleep(nsec)
print 'loop', nloop, 'done at:', ctime()

def main():
print 'start at: ', ctime()
threads = []
nloops = range(len(loops))

for i in nloops: # 創(chuàng)建 Thread 實例
t = threading.Thread(target=loop, args=(i, loops[i]))
threads.append(t)

for i in nloops: # start threads
threads[i].start()

for i in nloops: # wait for all
threads[i].join() # thread to finish

print 'all doneat', ctime()

if __name__ == '__main__':
main()

第二種:創(chuàng)建一個 Thread 實例,傳一個可調(diào)用的類實例

1刽沾、創(chuàng)建 ThreadFunc 類
2本慕、創(chuàng)建Thread實例,targer調(diào)用類侧漓,傳遞方法锅尘,添加到線程列表
2、啟動線程列表中的線程
3布蔗、通過join阻塞線程直到完成藤违,最后出現(xiàn)結果

#-*- coding:utf-8 -*-
import threading
from time import sleep, ctime

"""
創(chuàng)建一個 Thread 實例,傳一個可調(diào)用的類實例
"""

loops = [ 4, 2]

class ThreadFunc(object):
def __init__(self, func, args, name=''):
self.name = name
self.func = func
self.args = args

def __call__(self):
self.func(*self.args)

def loop(nloop, nsec):
print 'start loop', nloop, 'at:', ctime()
sleep(nsec)
print 'loop', nloop, 'done at:', ctime()

def main():
print 'start at: ', ctime()
threads = []
nloops = range(len(loops))

for i in nloops: # 創(chuàng)建 Thread 實例
t = threading.Thread(target=ThreadFunc(loop, (i, loops[i]), loop.__name__))
threads.append(t)

for i in nloops: # start threads
threads[i].start()

for i in nloops: # wait for all
threads[i].join() # thread to finish

print 'all doneat', ctime()

if __name__ == '__main__':
main()

第三種:派生 Thread 的子類纵揍,并創(chuàng)建子類的實例

1顿乒、創(chuàng)建 MyThread 類,包含run方法泽谨,繼承threading.Thread
2璧榄、創(chuàng)建Thread實例,通過MyThread來創(chuàng)建吧雹,添加到線程列表
2骨杂、啟動線程列表中的線程
3、通過join阻塞線程直到完成吮炕,最后出現(xiàn)結果

#-*- coding:utf-8 -*-
import threading
from time import sleep, ctime

"""
派生 Thread 的子類腊脱,并創(chuàng)建子類的實例
"""

loops = (4, 2)

class MyThread(threading.Thread):
def __init__(self, func, args, name=''):
threading.Thread.__init__(self)
self.name = name
self.func = func
self.args = args

def run(self):
self.func(*self.args)

def loop(nloop, nsec):
print 'start loop', nloop, 'at:', ctime()
sleep(nsec)
print 'loop', nloop, 'done at:', ctime()

def main():
print 'start at: ', ctime()
threads = []
nloops = range(len(loops))

for i in nloops: # 創(chuàng)建 Thread 實例
t = MyThread(loop, (i, loops[i]), loop.__name__)
threads.append(t)

for i in nloops: # start threads
threads[i].start()

for i in nloops: # wait for all
threads[i].join() # thread to finish

print 'all doneat', ctime()

if __name__ == '__main__':
main()

最后獨立出來MyThread類

import threading
from time import ctime

class MyThread(threading.Thread):
def __init__(self, func, args, name=''):
threading.Thread.__init__(self)
self.name = name
self.args = args
self.func = func
def getResult(self):
return self.res

def run(self):
print 'staring', self.name, 'at:', ctime()
self.res = self.func(*self.args)
print self.name, 'finished at:', ctime()

對比單線程與多線程去執(zhí)行斐波那契數(shù)列

from myThread import MyThread
from time import ctime, sleep

def fib(x):
sleep(0.005)
if x < 2:return 1
return (fib(x-2)+fib(x-1))

def fac(x):
sleep(0.1)
if x < 2: return 1
return (x * fac(x-1))

def sum(x):
sleep(0.1)
if x < 2:return 1
return (x + sum(x-1))

funcs = [fib, fac, sum]
n = 12

def main():
nfuncs = range(len(funcs))

print '*** SINGLE THREAD'
for i in nfuncs:
print 'starting', funcs[i].__name__, 'at:', ctime
print funcs[i](n)
print funcs[i].__name__, 'finished at:', ctime()

print '\n *** MULTIPLE THREADS'
threads = []
for i in nfuncs:
t = MyThread(funcs[i], (n, ), funcs[i].__name__)
threads.append(t)

for i in nfuncs:
threads[i].start()

for i in nfuncs:
threads[i].join()
print threads[i].getResult()
print 'all DONE'

if __name__ == '__main__':
main()

實戰(zhàn)

獲取亞馬遜的書籍分數(shù)等級

# -*- coding:utf-8 -*-
from atexit import register
from re import compile
from threading import Thread
from time import ctime
from urllib2 import urlopen as uopen

REGEX = compile('#([\d,]+) in Books ')
AMZN = 'http://amazon.com/dp/'
ISBNs = {
'0132269937' : 'Core Python Programming',
'0132356139' : 'Python Web Development with Django',
'0137143419' : 'Python Fundamentals',
}

def getRanking(isbn):
page = uopen('%s%s' % (AMZN, isbn)) # or str.format()
data = page.read() #page得到服務器返回的對象,read()下載整個文件
page.close() # 關閉這個文件
return REGEX.findall(data)[0] # 匹配到的值

def _showRanking(isbn):
Thread(target=_showRanking, args=(isbn,)).start
print '- %r ranked %s' % (ISBNs[isbn], getRanking(isbn))

def main():
print 'At', ctime(), 'on Amazon...'
for isbn in ISBNs:
_showRanking(isbn)

@register # 裝飾器龙亲,注冊一個退出函數(shù)陕凹,腳本在退出前就會調(diào)用這個函數(shù)
def _atexit():
print 'all DONE at:', ctime()

if __name__ == '__main__':
main()
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市鳄炉,隨后出現(xiàn)的幾起案子杜耙,更是在濱河造成了極大的恐慌,老刑警劉巖拂盯,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件佑女,死亡現(xiàn)場離奇詭異,居然都是意外死亡谈竿,警方通過查閱死者的電腦和手機团驱,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來空凸,“玉大人嚎花,你說我怎么就攤上這事⊙街蓿” “怎么了紊选?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵啼止,是天一觀的道長。 經(jīng)常有香客問我兵罢,道長献烦,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任卖词,我火速辦了婚禮巩那,結果婚禮上,老公的妹妹穿的比我還像新娘坏平。我一直安慰自己拢操,他們只是感情好,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布舶替。 她就那樣靜靜地躺著令境,像睡著了一般。 火紅的嫁衣襯著肌膚如雪顾瞪。 梳的紋絲不亂的頭發(fā)上舔庶,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機與錄音陈醒,去河邊找鬼惕橙。 笑死,一個胖子當著我的面吹牛钉跷,可吹牛的內(nèi)容都是我干的弥鹦。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼爷辙,長吁一口氣:“原來是場噩夢啊……” “哼彬坏!你這毒婦竟也來了?” 一聲冷哼從身側響起膝晾,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤栓始,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后血当,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體幻赚,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年臊旭,在試婚紗的時候發(fā)現(xiàn)自己被綠了落恼。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡离熏,死狀恐怖领跛,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情撤奸,我是刑警寧澤吠昭,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站胧瓜,受9級特大地震影響矢棚,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜府喳,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一蒲肋、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧钝满,春花似錦兜粘、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至碎捺,卻和暖如春路鹰,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背收厨。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工晋柱, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人诵叁。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓雁竞,卻偏偏與公主長得像,于是被迫代替她去往敵國和親拧额。 傳聞我的和親對象是個殘疾皇子碑诉,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容

  • 1.線程的基本概念 1.1 線程 線程是應用程序最小的執(zhí)行單元,線程與進程類似势腮,進程可以看做程序的一次執(zhí)行联贩,而線程...
    XYZeroing閱讀 969評論 1 16
  • 引言&動機 考慮一下這個場景,我們有10000條數(shù)據(jù)需要處理捎拯,處理每條數(shù)據(jù)需要花費1秒泪幌,但讀取數(shù)據(jù)只需要0.1秒,...
    chen_000閱讀 501評論 0 0
  • 線程 引言&動機 考慮一下這個場景署照,我們有10000條數(shù)據(jù)需要處理祸泪,處理每條數(shù)據(jù)需要花費1秒,但讀取數(shù)據(jù)只需要0....
    不浪漫的浪漫_ea03閱讀 358評論 0 0
  • 線程狀態(tài)新建建芙,就緒没隘,運行,阻塞禁荸,死亡右蒲。 線程同步多線程可以同時運行多個任務阀湿,線程需要共享數(shù)據(jù)的時候,可能出現(xiàn)數(shù)據(jù)不...
    KevinCool閱讀 793評論 0 0
  • 什么是焦點 簡單一點理解瑰妄,在移動應用中陷嘴,焦點就是當前正在處理事件的位置。在手機應用中间坐,最有可能用到焦點的就是Edi...
    Cris_Ma閱讀 2,650評論 0 2