溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python多線程機(jī)制接口舉例分析

發(fā)布時(shí)間:2021-12-01 15:03:04 來源:億速云 閱讀:186 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“Python多線程機(jī)制接口舉例分析”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

Python開發(fā)工具是一個(gè)具有更高層的多線程機(jī)制接口,比如threding module,threading module是一個(gè)標(biāo)準(zhǔn)庫中的module,用Python語言實(shí)現(xiàn),Python可以使用戶避免過分的語法的羈絆而將精力主要集中到所要實(shí)現(xiàn)的程序任務(wù)上。

我們的目標(biāo)是要剖析Python開發(fā)工具中的多線程機(jī)制是如何實(shí)現(xiàn)的,而非學(xué)習(xí)在Python中如何進(jìn)行多線程編程,所以重點(diǎn)會(huì)放在thread module上。通過這個(gè)module,看一看Python對(duì)操作系統(tǒng)的原生線程機(jī)制所做的精巧的包裝。

我們通過下面所示的thread1.py開始充滿趣味的多線程之旅,在thread module中,Python向用戶提供的多線程機(jī)制的接口其實(shí)可以說少得可憐。當(dāng)然,也正因?yàn)槿绱耍攀?span >Python中的多線程編程變得非常的簡(jiǎn)單而方便。我們來看看在thread module的實(shí)現(xiàn)文件threadmodule.c中,thread module為Python使用者提供的所有多線程機(jī)制接口。

[thread1.py]   import thread   import time   def threadProc():       print 'sub thread id : ', thread.get_ident()       while True:           print "Hello from sub thread ", thread.get_ident()           time.sleep(1)   print 'main thread id : ', thread.get_ident()   thread.start_new_thread(threadProc, ())   while True:       print "Hello from main thread ", thread.get_ident()       time.sleep(1)  [threadmodule.c]   static PyMethodDef thread_methods[] = {       {"start_new_thread", (PyCFunction)thread_PyThread_start_new_thread,…},       {"start_new",    (PyCFunction)thread_PyThread_start_new_thread, …},       {"allocate_lock",    (PyCFunction)thread_PyThread_allocate_lock, …},       {"allocate",     (PyCFunction)thread_PyThread_allocate_lock, …},       {"exit_thread", (PyCFunction)thread_PyThread_exit_thread, …},       {"exit",          (PyCFunction)thread_PyThread_exit_thread, …},       {"interrupt_main", (PyCFunction)thread_PyThread_interrupt_main,…},       {"get_ident",       (PyCFunction)thread_get_ident, …},       {"stack_size",      (PyCFunction)thread_stack_size, …},       {NULL,          NULL}       /* sentinel */   };

我們發(fā)現(xiàn),thread module中有的接口居然以不同的形式出現(xiàn)了兩次,比如“start_new_thread”“start_new”,實(shí)際上在Python開發(fā)工具內(nèi)部,對(duì)應(yīng)的都是thread_ PyThread_start_new_thread這個(gè)函數(shù)。所以,thread module所提供的接口,真的是少得可憐。在我們的thread1.py中我們使用了其中兩個(gè)接口。

“Python多線程機(jī)制接口舉例分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI