我有乙個指令碼,我想要乙個功能與另乙個同時執行。
我看過的示例**:
import threading
def mythread (threading.thread):
# doing something........
def mythread2 (threading.thread):
# doing something........
mythread().start()
mythread2().start()
我無法正常工作。我寧願使用執行緒函式而不是類來實現。
這是工作指令碼:
from threading import thread
class myclass():
def help(self):
os.system('./ssh.py')
def nope(self):
a = [1,2,3,4,5,6,67,78]
for i in a:
print i
sleep(1)
if __name__ == "__main__":
yep = myclass()
thread = thread(target = yep.help)
thread2 = thread(target = yep.nope)
thread.start()
thread2.start()
thread.join()
print 'finished'
python在類中建立執行緒
import threading import time class mythread threading.thread def run self for i in range 3 time.sleep 1 msg i m self.name print msg def saypoem self p...
Python建立執行緒
python 提供了 thread 和 threading 兩個模組來支援多執行緒,其中 thread 提供低階別的 原始的執行緒支援,以及乙個簡單的鎖,正如它的名字所暗示的,一般程式設計不建議使用 thread 模組 而 threading 模組則提供了功能豐富的多執行緒支援。python 主要通...
RT Thread建立靜態 動態執行緒
rt thread 實時作業系統核心是乙個高效的硬實時核心,它具備非常優異的實時性 穩 定性 可剪裁性,當進行最小配置時,核心體積可以到 3k rom 占用 1k ram 占用。rt thread 中的 執行緒 一般由三部分組成 執行緒 函式 執行緒控制塊 執行緒堆疊。指向執行緒控制塊的指標 sta...