Python3 多線程
python3 多線程
python 支持多線程編程。線程(thread)是操作系統(tǒng)能夠進(jìn)行運(yùn)算調(diào)度的最小單位。它包含在進(jìn)程之中,是進(jìn)程中的實(shí)際調(diào)度單位。
一個(gè)進(jìn)程中可以并發(fā)多個(gè)線程,每條線程并行執(zhí)行不同的任務(wù)。但是線程不能夠獨(dú)立執(zhí)行,必須依存在應(yīng)用程序中,由應(yīng)用程序提供多個(gè)線程執(zhí)行控制。
線程分類
- 內(nèi)核線程:由操作系統(tǒng)內(nèi)核創(chuàng)建和撤銷。
- 用戶線程:不需要內(nèi)核支持而在用戶程序中實(shí)現(xiàn)的線程。
python3 線程中常用的兩個(gè)模塊
- _thread
- threading(推薦使用)
thread 模塊已被廢棄。用戶可以使用 threading 模塊代替。所以,在 python3 中不能再使用"thread" 模塊。為了兼容性,python3 將 thread 重命名為 "_thread"。
開始學(xué)習(xí)python線程
python中使用線程有兩種方式:函數(shù)或者用類來包裝線程對(duì)象。
函數(shù)式:調(diào)用 _thread 模塊中的start_new_thread()函數(shù)來產(chǎn)生新線程。語法如下:
_thread.start_new_thread ( function, args[, kwargs] )
參數(shù)說明:
- function - 線程函數(shù)。
- args - 傳遞給線程函數(shù)的參數(shù),他必須是個(gè)tuple類型。
- kwargs - 可選參數(shù)。
范例
#!/usr/bin/python3
import _thread
import time
# 為線程定義一個(gè)函數(shù)
def print_time( threadname, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print ("%s: %s" % ( threadname, time.ctime(time.time()) ))
# 創(chuàng)建兩個(gè)線程
try:
_thread.start_new_thread( print_time, ("thread-1", 2, ) )
_thread.start_new_thread( print_time, ("thread-2", 4, ) )
except:
print ("error: 無法啟動(dòng)線程")
while 1:
pass
import _thread
import time
# 為線程定義一個(gè)函數(shù)
def print_time( threadname, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print ("%s: %s" % ( threadname, time.ctime(time.time()) ))
# 創(chuàng)建兩個(gè)線程
try:
_thread.start_new_thread( print_time, ("thread-1", 2, ) )
_thread.start_new_thread( print_time, ("thread-2", 4, ) )
except:
print ("error: 無法啟動(dòng)線程")
while 1:
pass
相關(guān)文章
- Python 教程
- Python 基礎(chǔ)語法
- Python 變量類型
- Python 條件語句
- Python break 語句
- Python Number 數(shù)字
- Python 列表 List
- Python 字典 Dictionary
- Python 正則表達(dá)式
- Python SMTP發(fā)送郵件
- Python 圖形
- Python 算法分析
- Python 分而治之
- Python 搜索算法
- Python 算法理由
- Python3 數(shù)據(jù)類型
- Python3 運(yùn)算符
- Python3 數(shù)字(Number)
- Python3 元組(Tuple)
- Python3 面向?qū)ο?/a>